| 1 | <?php |
||
| 26 | final class LocaleHelperSpec extends ObjectBehavior |
||
| 27 | { |
||
| 28 | function let(LocaleConverterInterface $localeConverter): void |
||
| 32 | |||
| 33 | function it_is_a_helper(): void |
||
| 34 | { |
||
| 35 | $this->shouldHaveType(Helper::class); |
||
| 36 | } |
||
| 37 | |||
| 38 | function it_is_a_locale_helper(): void |
||
| 42 | |||
| 43 | function it_converts_locales_code_to_name(LocaleConverterInterface $localeConverter): void |
||
| 49 | |||
| 50 | function it_has_a_name(): void |
||
| 54 | } |
||
| 55 |