Passed
Push — master ( 979f6d...757493 )
by US
08:39 queued 11s
created

PaginationDataHandlerSpec   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 17
rs 10
wmc 3
1
<?php
2
3
/*
4
 * This file has been created by developers from BitBag.
5
 * Feel free to contact us once you face any issues or want to start
6
 * another great project.
7
 * You can find more information about us on https://bitbag.shop and write us
8
 * an email on [email protected].
9
 */
10
11
declare(strict_types=1);
12
13
namespace spec\BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler;
14
15
use BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler\PaginationDataHandler;
16
use BitBag\SyliusElasticsearchPlugin\Controller\RequestDataHandler\PaginationDataHandlerInterface;
17
use PhpSpec\ObjectBehavior;
18
19
final class PaginationDataHandlerSpec extends ObjectBehavior
20
{
21
    function it_is_initializable(): void
22
    {
23
        $this->shouldHaveType(PaginationDataHandler::class);
24
    }
25
26
    function it_implements_pagination_data_handler_interface(): void
27
    {
28
        $this->shouldHaveType(PaginationDataHandlerInterface::class);
29
    }
30
31
    function it_retrieves_data(): void
32
    {
33
        $this->retrieveData([])->shouldBeEqualTo([
34
            PaginationDataHandlerInterface::PAGE_INDEX => 1,
35
            PaginationDataHandlerInterface::LIMIT_INDEX => PaginationDataHandlerInterface::DEFAULT_LIMIT,
36
        ]);
37
    }
38
}
39