PhroznTest\Site\View\FactoryTest::testImplicitHtmlFileCreation PHP Method

testImplicitHtmlFileCreation() public method

    public function testImplicitHtmlFileCreation()
    {
        $path = dirname(__FILE__) . '/../project/.phrozn/entries/';
        $input = $path . '2011-02-24-factory-test.twig';
        $output = realpath($path . '/../site');
        $factory = new Factory();
        $view = $factory->setInputFile($input)->create();
        $this->assertInstanceOf('\\Phrozn\\Site\\View\\Twig', $view);
    }