aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMaurice van der Pot <griffon26@kfk4ever.com>2016-02-27 00:47:55 +0100
committerMaurice van der Pot <griffon26@kfk4ever.com>2016-02-27 00:47:55 +0100
commit596601380fc2911e25394b7675aa34f1cab761a9 (patch)
treea288c3941a1997d7b4e90deb7a7f07ba1bbe5a54 /tests
parente56f0cd9b0c6f934bac62751234c0f4df2050ac6 (diff)
downloadmarkdown-596601380fc2911e25394b7675aa34f1cab761a9.tar.gz
markdown-596601380fc2911e25394b7675aa34f1cab761a9.tar.bz2
markdown-596601380fc2911e25394b7675aa34f1cab761a9.zip
Added a few empty lines in the test to satisfy flake8
Diffstat (limited to 'tests')
-rw-r--r--tests/test_extensions.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_extensions.py b/tests/test_extensions.py
index e9b6112..30b21bb 100644
--- a/tests/test_extensions.py
+++ b/tests/test_extensions.py
@@ -11,6 +11,7 @@ from __future__ import unicode_literals
import unittest
import markdown
+
class TestCaseWithAssertStartsWith(unittest.TestCase):
def assertStartsWith(self, expectedPrefix, text, msg=None):
@@ -21,6 +22,7 @@ class TestCaseWithAssertStartsWith(unittest.TestCase):
repr(text))
self.fail(self._formatMessage(msg, standardMsg))
+
class TestExtensionClass(unittest.TestCase):
""" Test markdown.extensions.Extension. """
@@ -94,6 +96,7 @@ class TestAbbr(unittest.TestCase):
'and <em><abbr title="Abreviation">ABBR</abbr></em></p>'
)
+
class TestCodeHilite(TestCaseWithAssertStartsWith):
""" Test codehilite extension. """