Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | public function it_can_unset_homepage() |
||
28 | { |
||
29 | $page = $this->page->create([ |
||
30 | 'is_home' => 1, |
||
31 | 'template' => 'default', |
||
32 | 'en' => [ |
||
33 | 'title' => 'My Page', |
||
34 | 'slug' => 'my-page', |
||
35 | 'body' => 'My Page Body', |
||
36 | ], |
||
37 | ]); |
||
38 | $page = $this->page->update($page, [ |
||
39 | 'is_home' => 0, |
||
40 | ]); |
||
41 | $this->assertFalse($page->is_home); |
||
42 | } |
||
43 | |||
71 |