mirror of
https://github.com/archtechx/enums.git
synced 2025-12-12 14:34:05 +00:00
7 lines
149 B
PHP
7 lines
149 B
PHP
<?php
|
|
|
|
it('can return an associative array of options')
|
|
->expect(Status::options())->toBe([
|
|
'PENDING' => 0,
|
|
'DONE' => 1,
|
|
]);
|