Renamed the SauceLabsFactory for consistent casing

This commit is contained in:
Christophe Coevoet
2014-04-26 23:34:44 +02:00
parent 3b00c091e9
commit 82fb06bb57
4 changed files with 22 additions and 9 deletions

View File

@@ -4,16 +4,16 @@ namespace spec\Behat\MinkExtension\ServiceContainer\Driver;
use PhpSpec\ObjectBehavior;
class SaucelabsFactorySpec extends ObjectBehavior
class SauceLabsFactorySpec extends ObjectBehavior
{
function it_is_a_driver_factory()
{
$this->shouldHaveType('Behat\MinkExtension\ServiceContainer\Driver\DriverFactory');
}
function it_is_named_saucelabs()
function it_is_named_sauce_labs()
{
$this->getDriverName()->shouldReturn('saucelabs');
$this->getDriverName()->shouldReturn('sauce_labs');
}
function it_supports_javascript()