You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import unittest
|
|
|
|
from ebermergen.models.game import Game
|
|
|
|
|
|
class TestSerializer(unittest.TestCase):
|
|
def test_serialize(self):
|
|
a = Game()
|
|
a.seed_map()
|
|
a.serialize()
|