diff options
author | kali <kali@leap.se> | 2012-12-21 10:28:46 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-12-21 10:28:46 +0900 |
commit | ec0fc05e3918782dbb29f9f6901c0de22419134d (patch) | |
tree | e5e49bc7601e08cc604b54c1388c0fd0241f980b /src/leap/util/tests/test_translations.py | |
parent | ea4a3b3396caeeaa2be4dc46aecf386a56a522c9 (diff) |
magic translatable objects
Diffstat (limited to 'src/leap/util/tests/test_translations.py')
-rw-r--r-- | src/leap/util/tests/test_translations.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/leap/util/tests/test_translations.py b/src/leap/util/tests/test_translations.py new file mode 100644 index 00000000..794daeba --- /dev/null +++ b/src/leap/util/tests/test_translations.py @@ -0,0 +1,22 @@ +import unittest + +from leap.util import translations + + +class TrasnlationsTestCase(unittest.TestCase): + """ + tests for translation functions and classes + """ + + def setUp(self): + self.trClass = translations.LEAPTranslatable + + def test_trasnlatable(self): + tr = self.trClass({"en": "house", "es": "casa"}) + eq = self.assertEqual + eq(tr.tr(to="es"), "casa") + eq(tr.tr(to="en"), "house") + + +if __name__ == "__main__": + unittest.main() |