Passed
Push — master ( ed297f...604ea4 )
by Giuliano
04:39
created

CreateComposerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 11
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testCreateComposerFile() 0 9 1
1
<?php
2
3
namespace Maestriam\Samurai\Tests\Unit\Entities\Composer;
4
5
use Maestriam\Samurai\Entities\Theme;
6
use Maestriam\Samurai\Tests\TestCase;
7
use Maestriam\Samurai\Entities\Composer;
8
9
class CreateComposerTest extends TestCase
10
{
11
    public function testCreateComposerFile()
12
    {
13
        $theme = new Theme('bands/wasp');
14
15
        $composer = new Composer($theme);
16
17
        $composer->create();
18
19
        $this->assertFileExists($composer->path());
20
    }
21
}