Exemplo n.º 1
0
 def test_many_cells(self):
     b = Board(['rr', 'gg'])
     assert b.__str__() == 'r r\ng g'
Exemplo n.º 2
0
 def test_one_cell(self):
     b = Board([EMPTY_CELL])
     assert b.__str__() == EMPTY_CELL