You are here

public function InstallTranslationFilePatternTest::providerInvalidTranslationFiles in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php \Drupal\Tests\system\Kernel\Installer\InstallTranslationFilePatternTest::providerInvalidTranslationFiles()
  2. 10 core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php \Drupal\Tests\system\Kernel\Installer\InstallTranslationFilePatternTest::providerInvalidTranslationFiles()

Return value

array

File

core/modules/system/tests/src/Kernel/Installer/InstallTranslationFilePatternTest.php, line 71

Class

InstallTranslationFilePatternTest
Tests for installer language support.

Namespace

Drupal\Tests\system\Kernel\Installer

Code

public function providerInvalidTranslationFiles() {
  return [
    [
      'hu',
      'drupal-alpha1-*-hu.po',
    ],
    [
      'ta',
      'drupal-beta12.ta',
    ],
    [
      'hi',
      'drupal-hi.po',
    ],
    [
      'de',
      'drupal-dummy-de.po',
    ],
    [
      'hu',
      'drupal-10.0.1.alpha1-hu.po',
    ],
  ];
}