PhroznTest\Site\DefaultSiteTest::testSiteCompilationEntriesNotFound PHP Method

testSiteCompilationEntriesNotFound() public method

    public function testSiteCompilationEntriesNotFound()
    {
        $path = dirname(__FILE__) . '/not/found/';
        $site = new Site($path, $path . 'public');
        $outputter = new TestOutputter($this);
        $this->setExpectedException('RuntimeException', "Entries folder not found");
        $site->setOutputter($outputter)->compile();
    }