diff options
author | Eduardo Pedroni <ep625@york.ac.uk> | 2015-05-19 12:35:51 +0200 |
---|---|---|
committer | Eduardo Pedroni <ep625@york.ac.uk> | 2015-05-19 12:35:51 +0200 |
commit | 59ff38d5a53f027208fb82a2c417458e112563a5 (patch) | |
tree | e5b7cb06a9e03cd2c0dc7d2421ec8ebc670cc92a |
Initial commit
-rw-r--r-- | README.md | 3 | ||||
-rwxr-xr-x | cardbase.py | 0 | ||||
-rwxr-xr-x | test_cardbase.py | 23 |
3 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..a457e8f --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# cardbase + +Cardbase is a (for now) simple tool for managing MTG cards. My collection was getting out of hand, so I decided to catalogue in a way that makes it easy to determine how many of each card I have, for putting decks together. diff --git a/cardbase.py b/cardbase.py new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/cardbase.py diff --git a/test_cardbase.py b/test_cardbase.py new file mode 100755 index 0000000..e088f13 --- /dev/null +++ b/test_cardbase.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 + +import sys +import unittest + +class Test_testSomething(unittest.TestCase): + + def setUp(self): + pass + + def tearDown(self): + pass + + def test_something(self): + pass + +def test(): + + unittest.main(exit=False) + +# The entry point +if __name__ == "__main__": + test() |