예제 #1
0
파일: test_Game.py 프로젝트: cplyon/scrabb
 def test_get_orientation_none(self):
     game = Game()
     orientation = game.get_orientation(
         [Board.MIDDLE, (Board.MIDDLE[0] + 1, Board.MIDDLE[1] + 1)])
     self.assertEqual(orientation, Orientation.NONE)
예제 #2
0
파일: test_Game.py 프로젝트: cplyon/scrabb
 def test_get_orientation_horizontal(self):
     game = Game()
     orientation = game.get_orientation(
         [Board.MIDDLE, (Board.MIDDLE[0], Board.MIDDLE[1] + 1)])
     self.assertEqual(orientation, Orientation.HORIZONTAL)
예제 #3
0
파일: test_Game.py 프로젝트: cplyon/scrabb
 def test_get_orientation_vertical(self):
     game = Game()
     orientation = game.get_orientation(
         [Board.MIDDLE, (Board.MIDDLE[0] + 1, Board.MIDDLE[1])])
     self.assertEqual(orientation, Orientation.VERTICAL)
예제 #4
0
파일: test_Game.py 프로젝트: cplyon/scrabb
 def test_get_orientation_single(self):
     game = Game()
     orientation = game.get_orientation([Board.MIDDLE])
     self.assertEqual(orientation, Orientation.HORIZONTAL)