ebermergen-td/server/tests/test_game.py

14 lines
266 B
Python
Raw Normal View History

2020-01-03 15:04:17 +01:00
import unittest
from ebermergen.models.game import Game
class TestSerializer(unittest.TestCase):
def test_instantiation(self):
a = Game()
self.assertEqual(2, len(a.players))
def test_seeding(self):
a = Game()
a.seed_map()