Separate escape tests
This commit is contained in:
5
tests.py
5
tests.py
@@ -10,7 +10,10 @@ class BasicTests(unittest.TestCase):
|
||||
def test_soup(self):
|
||||
self.assertEqual(md('<div><span>Hello</div></span>'), 'Hello')
|
||||
|
||||
def test_escape(self):
|
||||
|
||||
class EscapeTests(unittest.TestCase):
|
||||
|
||||
def test_underscore(self):
|
||||
self.assertEqual(md('_hey_dude_'), '\_hey\_dude\_')
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user