Beispiel #1
0
 def test_doesnt_explode(self):
     # It's really hard to test that a system has a given locale, so at least
     # make sure we don't explode when we try to check it.
     try:
         dsl.hasLocale(self.config, 'en_US.UTF-8')
     except subprocess.CalledProcessError:
         self.fail("checking for hasLocale should not explode")
Beispiel #2
0
 def test_nonexistent_locale(self):
     self.assertFalse(
         dsl.hasLocale(self.config,
                       'for_sure_this_is_not_an_existing_locale'))