mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
Reshuffling the Evennia package into the new template paradigm.
This commit is contained in:
parent
2846e64833
commit
2b3a32e447
371 changed files with 17250 additions and 304 deletions
|
|
@ -1,55 +0,0 @@
|
|||
import unittest
|
||||
|
||||
class TestTextToHTMLparser(unittest.TestCase):
|
||||
def test_convert_linebreaks(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.convert_linebreaks(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_convert_urls(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.convert_urls(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_do_sub(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.do_sub(m))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_parse(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.parse(text, strip_ansi))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_re_bold(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.re_bold(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_re_color(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.re_color(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_re_underline(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.re_underline(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_remove_backspaces(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.remove_backspaces(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
def test_remove_bells(self):
|
||||
# text_to_htm_lparser = TextToHTMLparser()
|
||||
# self.assertEqual(expected, text_to_htm_lparser.remove_bells(text))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
class TestParseHtml(unittest.TestCase):
|
||||
def test_parse_html(self):
|
||||
# self.assertEqual(expected, parse_html(string, strip_ansi, parser))
|
||||
assert True # TODO: implement your test here
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue