Security update for permissions_by_term
[yaffs-website] / vendor / behat / mink-extension / spec / Behat / MinkExtension / ServiceContainer / Driver / ZombieFactorySpec.php
1 <?php
2
3 namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
4
5 use PhpSpec\ObjectBehavior;
6
7 class ZombieFactorySpec extends ObjectBehavior
8 {
9     function it_is_a_driver_factory()
10     {
11         $this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
12     }
13
14     function it_is_named_zombie()
15     {
16         $this->getDriverName()->shouldReturn('zombie');
17     }
18
19     function it_supports_javascript()
20     {
21         $this->supportsJavascript()->shouldBe(true);
22     }
23 }