2018-12-17 16:13:37 +00:00
|
|
|
from django.test import TestCase
|
2019-05-11 15:13:03 +00:00
|
|
|
from GeoffreyApp.mcm_api import get_player
|
2018-12-17 16:13:37 +00:00
|
|
|
# Create your tests here.
|
|
|
|
|
|
|
|
UUID = "fe7e84132570458892032b69ff188bc3"
|
|
|
|
USERNAME = "ZeroHD"
|
|
|
|
|
|
|
|
|
|
|
|
class MCM_APITestCase(TestCase):
|
|
|
|
|
|
|
|
def test_get_player(self):
|
|
|
|
players = get_player(UUID)
|
|
|
|
|
|
|
|
if len(players) != 1:
|
|
|
|
self.fail()
|
|
|
|
else:
|
|
|
|
self.assertEqual(players[0]["username"], USERNAME)
|