Test Australian English It should not get confused with American English.
(self)
| 110 | |
| 111 | @skipIfMissingPo |
| 112 | def test_get_text_au(self): |
| 113 | """Test Australian English |
| 114 | |
| 115 | It should not get confused with American English. |
| 116 | """ |
| 117 | options.set('forced_language', 'en_AU') |
| 118 | self.assertEqual(get_active_language_code(), 'en_AU') |
| 119 | setup_translation() |
| 120 | self.assertEqual(get_text('Localizations'), 'Localisations') |
| 121 | |
| 122 | @skipIfMissingPo |
| 123 | def test_get_text_fallback(self): |
nothing calls this directly
no test coverage detected