def test_empty(self): result = trans_str(self.context, {}) self.assertEqual('', result)
def test_no_match(self): self.context['lang'] = 'ru' result = trans_str(self.context, self.trans_obj) self.assertEqual('English', result)
def test_match_es(self): self.context['lang'] = 'es' result = trans_str(self.context, self.trans_obj) self.assertEqual('EspaƱol', result)
def test_match_en(self): result = trans_str(self.context, self.trans_obj) self.assertEqual('English', result)
def test_canonical_html(self): result = trans_str(self.context, '<input>') self.assertEqual('<input>', result)
def test_canonical(self): result = trans_str(self.context, 'canonical string') self.assertEqual('canonical string', result)