Completed
Push — master ( 8bc2af...88ffe5 )
by Koen
02:59
created

ClientSpec::let()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace spec\ikoene\Marvel;
4
5
use ikoene\Marvel\Client;
6
use PhpSpec\ObjectBehavior;
7
use Prophecy\Argument;
8
9
class ClientSpec extends ObjectBehavior
10
{
11
    function let() {
12
        $this->beConstructedWith(
13
            'your_public_api_key',
14
            'your_private_api_key'
15
        );
16
    }
17
18
    function it_is_initializable()
19
    {
20
        $this->shouldHaveType(Client::class);
21
    }
22
}
23