aboutsummaryrefslogtreecommitdiffstats
path: root/test_fetching.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_fetching.py')
-rwxr-xr-xtest_fetching.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/test_fetching.py b/test_fetching.py
deleted file mode 100755
index bf17a22..0000000
--- a/test_fetching.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env python3
-
-import unittest
-import cardparser
-
-class Test_cardPageFetching(unittest.TestCase):
-
- # Tests
- def test_correctUrlIsBuilt(self):
- self.assertEqual(cardparser.makeUrl("set", "number"), "http://magiccards.info/set/en/number.html")
-
-def test():
- unittest.main(exit=False)
-
-# The entry point
-if __name__ == "__main__":
- test()