10000 Add intl extension requirement · symfony/symfony@bbc7834 · GitHub
[go: up one dir, main page]

Skip to content

Commit bbc7834

Browse files
committed
Add intl extension requirement
1 parent 07a131b commit bbc7834

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

src/Symfony/Component/Form/Tests/Extension/Core/Type/CountryTypeTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ public function testCountriesAreSelectable()
3838
$this->assertContains(new ChoiceView('MY', 'MY', 'Malaysia'), $choices, '', false, false);
3939
}
4040

41+
/**
42+
* @requires extension intl
43+
*/
4144
public function testChoiceTranslationLocaleOption()
4245
{
4346
$choices = $this->factory

src/Symfony/Component/Form/Tests/Extension/Core/Type/CurrencyTypeTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public function testCurrenciesAreSelectable()
3535
$this->assertContains(new ChoiceView('SIT', 'SIT', 'Slovenian Tolar'), $choices, '', false, false);
3636
}
3737

38+
/**
39+
* @requires extension intl
40+
*/
3841
public function testChoiceTranslationLocaleOption()
3942
{
4043
$choices = $this->factory

src/Symfony/Component/Form/Tests/Extension/Core/Type/LanguageTypeTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ public function testCountriesAreSelectable()
3737
$this->assertContains(new ChoiceView('my', 'my', 'Burmese'), $choices, '', false, false);
3838
}
3939

40+
/**
41+
* @requires extension intl
42+
*/
4043
public function testChoiceTranslationLocaleOption()
4144
{
4245
$choices = $this->factory

src/Symfony/Component/Form/Tests/Extension/Core/Type/LocaleTypeTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public function testLocalesAreSelectable()
3535
$this->assertContains(new ChoiceView('zh_Hant_MO', 'zh_Hant_MO', 'Chinese (Traditional, Macau SAR China)'), $choices, '', false, false);
3636
}
3737

38+
/**
39+
* @requires extension intl
40+
*/
3841
public function testChoiceTranslationLocaleOption()
3942
{
4043
$choices = $this->factory

0 commit comments

Comments
 (0)
0