| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace VojtaSvoboda\Reservations\Tests\Variables; |
||
| 21 | public function testGetReservationLengthAfterSet() |
||
| 22 | { |
||
| 23 | Settings::set('reservation_length', 90); |
||
| 24 | Settings::set('reservation_length_unit', 'minutes'); |
||
| 25 | $result = Variables::getReservationLength(); |
||
| 26 | $this->assertSame('90 minutes', $result); |
||
| 27 | } |
||
| 28 | } |
||
| 29 |