Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function testCreateCategory() |
||
25 | { |
||
26 | $category1 = $this->category(); |
||
27 | $category2 = $this->category([ |
||
28 | 'title' => 'Category 2', |
||
29 | 'parent' => $category1->id, |
||
30 | ]); |
||
31 | |||
32 | $this->assertInstanceOf('\Moo\FlashCard\Entity\Category', $category2->parent()->first()); |
||
33 | $this->assertEquals($category1->title, $category2->parent()->first()->title); |
||
34 | } |
||
35 | |||
46 |