You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
324 B
11 lines
324 B
<?php
|
|
|
|
use App\Domains\Account\Enums\GenderOption;
|
|
use Tests\TestCase;
|
|
|
|
uses(TestCase::class);
|
|
|
|
test('it has correct labels', function () {
|
|
expect(GenderOption::MALE->label())->toBe(__('domains/account/enum.gender.male'))
|
|
->and(GenderOption::FEMALE->label())->toBe(__('domains/account/enum.gender.female'));
|
|
});
|
|
|