Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace GeneaLabs\LaravelModelCaching\Tests\Unit; |
||
38 | public function testChangingModelClearsCache() |
||
39 | { |
||
40 | $author = (new Author)->with('books')->first(); |
||
41 | $author->name = "John Jinglheimer"; |
||
42 | $author->save(); |
||
43 | |||
44 | $this->assertNull(cache()->get('genealabslaravelmodelcachingtestsfixturesauthor_1_2_3_4_5_6_7_8_9_10-genealabslaravelmodelcachingtestsfixturesbooks')); |
||
45 | } |
||
47 |