Merge pull request #209 from grooverdan/tst_br

TST: test case for <br> tags in action
pull/205/merge
Yaroslav Halchenko 2013-05-06 07:53:41 -07:00
commit bcecf085f1
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@ class ExecuteAction(unittest.TestCase):
'ABC': "123",
'xyz': "890",
}
self.assertEqual(
self.__action.replaceTag("Text<br>text", aInfo),
"Text\ntext")
self.assertEqual(
self.__action.replaceTag("Text <HOST> text", aInfo),
"Text 192.0.2.0 text")