diff --git a/spec/Behat/MinkExtension/ServiceContainer/Driver/AppiumFactorySpec.php b/spec/Behat/MinkExtension/ServiceContainer/Driver/AppiumFactorySpec.php new file mode 100644 index 0000000..bfc9bf1 --- /dev/null +++ b/spec/Behat/MinkExtension/ServiceContainer/Driver/AppiumFactorySpec.php @@ -0,0 +1,23 @@ +shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory'); + } + + function it_is_named_appium() + { + $this->getDriverName()->shouldReturn('appium'); + } + + function it_supports_javascript() + { + $this->supportsJavascript()->shouldBe(true); + } +}