fix git support for v1.5.3 (or higher) by setting "--work-tree"
[translate_toolkit.git] / storage / test_monolingual.py
blob745659ce58a794801b7f36a0325139b938ace533
1 #!/usr/bin/env python
3 # -*- coding: utf-8 -*-
5 # These test classes should be used as super class of test classes for the
6 # classes that doesn't support the target property
8 from translate.storage import test_base
9 from translate.storage import base
11 class TestMonolingualUnit(test_base.TestTranslationUnit):
12 UnitClass = base.TranslationUnit
14 def test_target(self):
15 pass
18 class TestMonolingualStore(test_base.TestTranslationStore):
19 StoreClass = base.TranslationStore
21 def test_translate(self):
22 pass
24 def test_markup(self):
25 pass
27 def test_nonascii(self):
28 pass