Unit test for method find_available_locales()
(self)
| 108 | |
| 109 | @common.skipIfWindows |
| 110 | def test_find_available_locales(self): |
| 111 | """Unit test for method find_available_locales()""" |
| 112 | locales = find_available_locales() |
| 113 | self.assertIsInstance(locales, list) |
| 114 | for locale in locales: |
| 115 | self.assertIsLanguageCode(locale) |
| 116 | |
| 117 | def test_find_available_locales_mock(self): |
| 118 | """Unit test for method find_available_locales() with mock""" |
nothing calls this directly
no test coverage detected