getEngine(); $engine->getCompiler()->shouldReceive('getCompiledPath')->with(__DIR__.'/fixtures/foo.php')->andReturn(__DIR__.'/fixtures/basic.php'); $engine->getCompiler()->shouldReceive('isExpired')->once()->with(__DIR__.'/fixtures/foo.php')->andReturn(true); $engine->getCompiler()->shouldReceive('compile')->once()->with(__DIR__.'/fixtures/foo.php');; $results = $engine->get(__DIR__.'/fixtures/foo.php'); $this->assertEquals('Hello World'.PHP_EOL, $results); } public function testViewsAreNotRecompiledIfTheyAreNotExpired() { $engine = $this->getEngine(); $engine->getCompiler()->shouldReceive('getCompiledPath')->with(__DIR__.'/fixtures/foo.php')->andReturn(__DIR__.'/fixtures/basic.php'); $engine->getCompiler()->shouldReceive('isExpired')->once()->andReturn(false); $engine->getCompiler()->shouldReceive('compile')->never(); $results = $engine->get(__DIR__.'/fixtures/foo.php'); $this->assertEquals('Hello World'.PHP_EOL, $results); } protected function getEngine() { return new CompilerEngine(m::mock('Illuminate\View\Compilers\CompilerInterface')); } }