From ca5643323776954e11954f32e6a31b249d0f4007 Mon Sep 17 00:00:00 2001 From: Eunho Lee <60344644+dev-ruby@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:20:07 +0900 Subject: [PATCH] Delete test.py --- test.py | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index 26d3f2d..0000000 --- a/test.py +++ /dev/null @@ -1,44 +0,0 @@ -import unittest -import asyncio - -import TrackerGG - -csgo_client = TrackerGG.CSGOClient("d83a0067-83b9-40d1-9ae8-e1594f8a8019") -apex_client = TrackerGG.ApexClient("d83a0067-83b9-40d1-9ae8-e1594f8a8019") - -loop = asyncio.get_event_loop() - -csgo_profile_list = ["hiveruby"] - - -class CSGOTest(unittest.TestCase): - def test_get_profile(self): - for p in csgo_profile_list: - try: - print(loop.run_until_complete(csgo_client.get_profile(p))) - except AssertionError: - pass - - def test_get_map_segment(self): - for p in csgo_profile_list: - try: - print(loop.run_until_complete(csgo_client.get_map_segment(p))) - except AssertionError: - pass - - def test_get_weapon_segment(self): - for p in csgo_profile_list: - try: - print(loop.run_until_complete(csgo_client.get_weapon_segment(p))) - except AssertionError: - pass - - def test_search_profile(self): - for p in csgo_profile_list: - try: - print(loop.run_until_complete(csgo_client.search_profile(p))) - except AssertionError: - pass - -if __name__ == '__main__': - unittest.main() \ No newline at end of file