예제 #1
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_one_skittle(self):
     self.assertEqual(compute_bowling_score([5]), 5)
예제 #2
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_spare_and_strike(self):
     self.assertEqual(
         compute_bowling_score([10, 3, 7, 5, 3, 5, 5, 7, 2, 5]), 74)
예제 #3
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_no_skittle(self):
     self.assertEqual(compute_bowling_score([]), 0)
예제 #4
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_multi_strike(self):
     self.assertEqual(compute_bowling_score([10, 10, 10, 10]), 90)
예제 #5
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_strike(self):
     self.assertEqual(compute_bowling_score([10, 5, 2]), 24)
예제 #6
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_multiple_spare(self):
     self.assertEqual(compute_bowling_score([5, 5, 2, 8, 5]), 32)
예제 #7
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_spare(self):
     self.assertEqual(compute_bowling_score([5, 5, 2]), 14)
예제 #8
0
파일: test.py 프로젝트: ehrakis/matrix.py
 def test_multiple_skittle(self):
     self.assertEqual(compute_bowling_score([5, 3, 2, 5, 4, 5]), 24)