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