Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | final class HasAttributesQueryBuilderSpec extends ObjectBehavior |
||
21 | { |
||
22 | function it_is_initializable(): void |
||
23 | { |
||
24 | $this->shouldHaveType(HasAttributesQueryBuilder::class); |
||
25 | } |
||
26 | |||
27 | function it_implements_query_builder_interface(): void |
||
28 | { |
||
29 | $this->shouldHaveType(QueryBuilderInterface::class); |
||
30 | } |
||
31 | |||
32 | function it_builds_query(): void |
||
33 | { |
||
34 | $this->buildQuery([ |
||
35 | 'attribute_values' => ['XL', 'L'], |
||
36 | 'attribute' => 'size', |
||
37 | ])->shouldBeAnInstanceOf(BoolQuery::class); |
||
38 | } |
||
40 |