11 lines
192 B
Python
11 lines
192 B
Python
import unittest
|
|
|
|
from ebermergen.models.game import Game
|
|
|
|
|
|
class TestSerializer(unittest.TestCase):
|
|
def test_serialize(self):
|
|
a = Game()
|
|
a.seed_map()
|
|
a.serialize()
|