aboutsummaryrefslogtreecommitdiffstats
path: root/tests/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/util.py b/tests/util.py
deleted file mode 100644
index 3b0175d..0000000
--- a/tests/util.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from ConfigParser import SafeConfigParser
-
-class MdSyntaxError(Exception):
- pass
-
-
-class CustomConfigParser(SafeConfigParser):
- def get(self, section, option):
- value = SafeConfigParser.get(self, section, option)
- if option == 'extensions':
- if len(value.strip()):
- return value.split(',')
- else:
- return []
- return value