Commit d0e5fb3f authored by Doron Behar's avatar Doron Behar
Browse files

nixosTests.i18n: Add tests of the C locale

parent a097c89d
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -38,6 +38,21 @@
        };
      };
    };
    Csimple = {
      i18n = {
        defaultLocale = "C";
      };
    };
    CnonDefault = {
      i18n = {
        defaultLocale = "en_US.UTF-8";
        extraLocaleSettings = {
          LC_COLLATE = "C";
          LC_MESSAGES = "C";
          LC_TIME = "C";
        };
      };
    };
  };
  testScript = { nodes, ... }: "";
}