summaryrefslogtreecommitdiff
path: root/src/match_up/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/match_up/tests')
-rw-r--r--src/match_up/tests/test_db.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/match_up/tests/test_db.py b/src/match_up/tests/test_db.py
deleted file mode 100644
index 5097090..0000000
--- a/src/match_up/tests/test_db.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from match_up.model import PlayerList
-
-
-def main():
- p = PlayerList()
- print(p.get_player_status(1))
- print(p.toggle_player_status(1))
- print(p.get_player_status(1))
- print(p.get_all_players())
- print(p.get_possible_game_count())
- print(p.get_players())
-
-
-if __name__ == "__main__":
- main()