1
0
Fork 0
mirror of https://github.com/archtechx/enums.git synced 2025-12-12 08:04:04 +00:00
enums/tests/Pest/OptionsTest.php
2022-02-20 21:50:53 +01:00

7 lines
149 B
PHP

<?php
it('can return an associative array of options')
->expect(Status::options())->toBe([
'PENDING' => 0,
'DONE' => 1,
]);