Completed
Push — theme-bundle ( 69304b...bce4cb )
by Kamil
18:15
created

FilesystemSpec   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 2
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 12
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A it_is_initializable() 0 4 1
A it_implements_TODO_interface() 0 4 1
1
<?php
2
3
namespace spec\Sylius\Bundle\ThemeBundle\Filesystem;
4
5
use PhpSpec\ObjectBehavior;
6
use Prophecy\Argument;
7
8
/**
9
 * @mixin \Sylius\Bundle\ThemeBundle\Filesystem\Filesystem
10
 *
11
 * @author Kamil Kokot <[email protected]>
12
 */
13
class FilesystemSpec extends ObjectBehavior
14
{
15
    function it_is_initializable()
16
    {
17
        $this->shouldHaveType('Sylius\Bundle\ThemeBundle\Filesystem\Filesystem');
18
    }
19
20
    function it_implements_TODO_interface()
21
    {
22
        $this->shouldImplement('Sylius\Bundle\ThemeBundle\Filesystem\FilesystemInterface');
23
    }
24
}
25