| 1 | <?php |
||
| 20 | class NotificationStatusSpec extends ObjectBehavior |
||
| 21 | { |
||
| 22 | private const READ = 'read'; |
||
| 23 | private const UNREAD = 'unread'; |
||
| 24 | |||
| 25 | function it_does_not_create_notification_status_with_invalid_status() |
||
| 30 | |||
| 31 | function it_creates_a_read_notification_status_value() |
||
| 37 | |||
| 38 | function it_creates_a_unread_notification_status_value() |
||
| 44 | } |
||
| 45 |