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
):
18 class TestMonolingualStore(test_base
.TestTranslationStore
):
19 StoreClass
= base
.TranslationStore
21 def test_translate(self
):
24 def test_markup(self
):
27 def test_nonascii(self
):