aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_verify_cases.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_verify_cases.py b/tests/test_verify_cases.py
new file mode 100644
index 0000000..6e03755
--- /dev/null
+++ b/tests/test_verify_cases.py
@@ -0,0 +1,12 @@
+import collections
+import csv
+
+Case = collections.namedtuple("Case", "a b status reason")
+
+def test_verify_cases():
+ with open("fixtures/verify.csv") as f:
+ reader = csv.reader(f, delimiter=',')
+ for row in reader:
+ case = Case(row)
+ print(case)
+