1 | <?php |
||
8 | class GroupCountBasedDispatcherFactorySpec extends ObjectBehavior |
||
9 | { |
||
10 | function it_creates_group_count_based_dispatcher() |
||
11 | { |
||
12 | $this->create([[], []])->shouldBeAnInstanceOf(GroupCountBased::class); |
||
13 | } |
||
14 | |||
15 | function it_is_initializable() |
||
16 | { |
||
17 | $this->shouldImplement(\Venta\Contracts\Routing\FastrouteDispatcherFactory::class); |
||
18 | } |
||
19 | } |
||
20 |