| 1 | <?php |
||
| 13 | class HandlebarsBundleTest extends \PHPUnit_Framework_TestCase |
||
| 14 | { |
||
| 15 | public function testBuild() |
||
| 16 | { |
||
| 17 | $observer = $this->prophesize('\Symfony\Component\DependencyInjection\ContainerBuilder'); |
||
| 18 | $observer->addCompilerPass(new HelperPass())->shouldBecalled(); |
||
| 19 | $bundle = new HandlebarsBundle(); |
||
| 20 | $bundle->build($observer->reveal()); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |