Added specs for the classes

This commit is contained in:
Christophe Coevoet
2014-01-04 17:14:35 +01:00
parent e261a5bfe3
commit 3059bc525c
5 changed files with 156 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace spec\Behat\MinkExtension;
use PhpSpec\ObjectBehavior;
class ExtensionSpec extends ObjectBehavior
{
function it_is_a_testwork_extension()
{
$this->shouldHaveType('Behat\Testwork\ServiceContainer\Extension');
}
function it_is_named_mink()
{
$this->getConfigKey()->shouldReturn('mink');
}
}