aboutsummaryrefslogtreecommitdiff
path: root/src/match_up/tests/test_db.py
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-15 17:09:59 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-15 17:09:59 +0100
commit6bb45fb64c76304f42a7cdfcad89477fee3ad947 (patch)
treee5eaedddb6befa622c34377629bf9caf79b5d753 /src/match_up/tests/test_db.py
parent0427e575e9cd32f3a38791fe26f2fd920a3f3f3f (diff)
Removed the SQL output to the terminal
Diffstat (limited to 'src/match_up/tests/test_db.py')
-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()