summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorjvoisin2011-06-18 04:42:52 +0200
committerjvoisin2011-06-18 04:42:52 +0200
commitde5917e5f01374bb1a647f49ae85283241a2bea9 (patch)
treefbe5483af79965d1445bd4aaa528f0ad3e48a8aa /test.py
parent0523e034870ed80cc3916ebb78552d661de4d3b0 (diff)
Creation of the arborescence
Diffstat (limited to '')
-rwxr-xr-xtest/test.py (renamed from test.py)4
1 files changed, 3 insertions, 1 deletions
diff --git a/test.py b/test/test.py
index 3138be7..f095157 100755
--- a/test.py
+++ b/test/test.py
@@ -7,9 +7,11 @@
7 7
8import shutil 8import shutil
9import glob 9import glob
10import sys
10import tempfile 11import tempfile
11import unittest 12import unittest
12import mat 13sys.path.append('..')
14from lib import mat
13 15
14FILE_LIST = zip(glob.glob('clean*'), glob.glob('dirty*')) 16FILE_LIST = zip(glob.glob('clean*'), glob.glob('dirty*'))
15 17