From 05c791c556c46975d0242ef6a5ea18b4c6125b4a Mon Sep 17 00:00:00 2001 From: Shashikant Date: Wed, 11 Feb 2015 19:56:39 +0000 Subject: [PATCH] Create AppiumFactorySpec.php --- .../Driver/AppiumFactorySpec.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 spec/Behat/MinkExtension/ServiceContainer/Driver/AppiumFactorySpec.php 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); + } +}