| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function it_sets_expiration_date_if_code_was_valid() |
||
| 21 | { |
||
| 22 | $promocodes = Promocodes::create(); |
||
| 23 | $promocode = $promocodes->first(); |
||
| 24 | |||
| 25 | Promocodes::disable($promocode['code']); |
||
| 26 | $dbPromocode = Promocode::byCode($promocode['code'])->first(); |
||
| 27 | |||
| 28 | $this->assertNotNull($dbPromocode->expires_at); |
||
| 29 | } |
||
| 30 | |||
| 42 |