summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/test/test.py b/test/test.py
index 227170b..681a956 100644
--- a/test/test.py
+++ b/test/test.py
@@ -13,7 +13,19 @@ import tempfile
13import unittest 13import unittest
14 14
15VERBOSITY = 3 15VERBOSITY = 3
16FILE_LIST = zip(glob.glob('clean*'), glob.glob('dirty*')) 16
17clean = glob.glob('clean*')
18clean.sort()
19dirty = glob.glob('dirty*')
20dirty.sort()
21FILE_LIST = zip(clean, dirty)
22
23try:
24 import poppler
25 import cairo
26except:
27 FILE_LIST.remove((('clean.pdf'), ('dirty.pdf')))
28
17 29
18class MATTest(unittest.TestCase): 30class MATTest(unittest.TestCase):
19 ''' 31 '''