def test_fmtsearchmatch(self):
     self.assertEqual(
         format_translation("Hello world!",
                            MockLanguage("en"),
                            search_match="hello")["items"][0]["content"],
         '<span class="hlmatch">Hello</span> world!',
     )
Example #2
0
 def test_fmtsearchmatch(self):
     self.assertEqual(
         format_translation(
             'Hello world!', MockLanguage('en'), search_match='hello'
         )['items'][0]['content'],
         '<span class="hlmatch">Hello</span> world!',
     )