Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / validator / Tests / Resources / TranslationFilesTest.php
index 96311cfeff32612bc6143e7fd335461fd303f804..d2b8a990117219e3a972fa178476f2125848f60c 100644 (file)
@@ -36,4 +36,13 @@ class TranslationFilesTest extends TestCase
             glob(dirname(dirname(__DIR__)).'/Resources/translations/*.xlf')
         );
     }
+
+    public function testNorwegianAlias()
+    {
+        $this->assertFileEquals(
+            dirname(dirname(__DIR__)).'/Resources/translations/validators.nb.xlf',
+            dirname(dirname(__DIR__)).'/Resources/translations/validators.no.xlf',
+            'The NO locale should be an alias for the NB variant of the Norwegian language.'
+        );
+    }
 }