You are here

public function LocaleConfigSubscriberForeignTest::testDeleteActiveTranslation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/locale/src/Tests/LocaleConfigSubscriberForeignTest.php \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest::testDeleteActiveTranslation()

Tests deleting translations of shipped configuration.

File

core/modules/locale/src/Tests/LocaleConfigSubscriberForeignTest.php, line 105
Contains \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest.

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\locale\Tests

Code

public function testDeleteActiveTranslation() {
  $config_name = 'locale_test.translation';
  $this->configFactory
    ->getEditable($config_name)
    ->delete();

  // Deleting active configuration should not change the locale translation.
  $this
    ->assertTranslation($config_name, 'Hungarian test', 'hu', FALSE);
}