| 1 | <?php |
||
| 22 | class HtmlExtensionSpec extends ObjectBehavior |
||
| 23 | { |
||
| 24 | |||
| 25 | function let(UriGeneratorInterface $uriGenerator) |
||
| 26 | { |
||
| 27 | $this->beConstructedWith($uriGenerator); |
||
| 28 | } |
||
| 29 | |||
| 30 | function its_a_template_extension() |
||
| 31 | { |
||
| 32 | $this->shouldBeAnInstanceOf(EngineExtensionInterface::class); |
||
| 33 | } |
||
| 34 | |||
| 35 | function it_is_initializable() |
||
| 36 | { |
||
| 37 | $this->shouldHaveType(HtmlExtension::class); |
||
| 38 | } |
||
| 39 | |||
| 40 | |||
| 41 | } |