Package translate :: Package storage :: Module test_monolingual
[hide private]
[frames] | no frames]

Source Code for Module translate.storage.test_monolingual

 1  #!/usr/bin/env python 
 2  # 
 3  # -*- coding: utf-8 -*- 
 4  # 
 5  # These test classes should be used as super class of test classes for the 
 6  # classes that doesn't support the target property 
 7   
 8  from translate.storage import test_base 
 9  from translate.storage import base 
10   
11 -class TestMonolingualUnit(test_base.TestTranslationUnit):
12 UnitClass = base.TranslationUnit 13
14 - def test_target(self):
15 pass
16 17
18 -class TestMonolingualStore(test_base.TestTranslationStore):
19 StoreClass = base.TranslationStore 20
21 - def test_translate(self):
22 pass
23
24 - def test_markup(self):
25 pass
26
27 - def test_nonascii(self):
28 pass
29