-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtensionSpec.php
43 lines (33 loc) · 1.26 KB
/
ExtensionSpec.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace spec\JamesHalsall\PhpSpecContainsMatchers;
use JamesHalsall\PhpSpecContainsMatchers\Extension;
use PhpSpec\Extension as PhpSpecExtension;
use PhpSpec\ObjectBehavior;
use PhpSpec\ServiceContainer;
use Prophecy\Argument;
class ExtensionSpec extends ObjectBehavior
{
function it_is_initializable()
{
$this->shouldHaveType(Extension::class);
}
function it_is_an_extension()
{
$this->shouldHaveType(PhpSpecExtension::class);
}
function it_should_define_a_contain_any_of_matcher(ServiceContainer $container)
{
$this->load($container, []);
$container->define('jameshalsall.matchers.contain_any_of', Argument::type('callable'), ['matchers'])->shouldHaveBeenCalled();
}
function it_should_define_a_contain_only_matcher(ServiceContainer $container)
{
$this->load($container, []);
$container->define('jameshalsall.matchers.contain_only', Argument::type('callable'), ['matchers'])->shouldHaveBeenCalled();
}
function it_should_define_a_contain_all_of_matcher(ServiceContainer $container)
{
$this->load($container, []);
$container->define('jameshalsall.matchers.contain_all_of', Argument::type('callable'), ['matchers'])->shouldHaveBeenCalled();
}
}