public function LocaleConfigSubscriberForeignTest::testLocaleDeleteActiveTranslation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/locale/src/Tests/LocaleConfigSubscriberForeignTest.php \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest::testLocaleDeleteActiveTranslation()
Tests deleting community translations of shipped configuration.
File
- core/
modules/ locale/ src/ Tests/ LocaleConfigSubscriberForeignTest.php, line 115 - Contains \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest.
Class
- LocaleConfigSubscriberForeignTest
- Tests default configuration handling with a foreign default language.
Namespace
Drupal\locale\TestsCode
public function testLocaleDeleteActiveTranslation() {
$config_name = 'locale_test.translation';
$this
->deleteLocaleTranslationData($config_name, 'test', 'English test', 'hu');
// Deleting the locale translation should not change active config.
$this
->assertEqual($this->configFactory
->getEditable($config_name)
->get('test'), 'Hungarian test');
}