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