예제 #1
0
 def test_new_player(self):
     "New player 'Guido' should be added to shelf file"
     observed = high_score.highScore('Guido', 200, fn=self.fn)
     expected = 'Guido: 200'
     self.assertEqual(observed, expected, "Way to go, Guido!")
예제 #2
0
 def test_get_new_high(self):
     "New score for 'BlackKnight' SHOULD replace old score"
     observed = high_score.highScore('BlackKnight', 5, fn=self.fn)
     expected = 'BlackKnight: 5'
     self.assertEqual(observed, expected, "It's just a scratch.")
예제 #3
0
 def test_get_existing_high(self):
     "New score for 'Galahad' should NOT replace old score"
     observed = high_score.highScore('Galahad', 120, fn=self.fn)
     expected = 'Galahad: 150'
     self.assertEqual(observed, expected, "Spank ME!")
예제 #4
0
 def test_get_existing_high(self):
     "New score for 'Galahad' should NOT replace old score"
     observed = high_score.highScore('Galahad', 120, fn=self.fn)
     expected = 'Galahad: 150'
     self.assertEqual(observed, expected, "Spank ME!")
예제 #5
0
 def test_new_player(self):
     "New player 'Guido' should be added to shelf file"
     observed = high_score.highScore('Guido', 200, fn=self.fn)
     expected = 'Guido: 200'
     self.assertEqual(observed, expected, "Way to go, Guido!")
예제 #6
0
 def test_new_player(self):
     "New player 'BlackKnight' should be added to shelf file"
     name, score, expected = self.name_score_exp[2]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "It's just a scratch!")
예제 #7
0
 def test_get_new_high(self):
     "New score for 'BlackKnight' SHOULD replace old score"
     observed = high_score.highScore('BlackKnight', 5, fn=self.fn)
     expected = 'BlackKnight: 5'
     self.assertEqual(observed, expected, "It's just a scratch.")
예제 #8
0
 def test_get_existing_high(self):
     "New score for 'Bill' should NOT replace old score"
     name, score, expected = self.name_score_exp[1]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "Spank ME!")
예제 #9
0
 def test_get_new_high(self):
     "New score for 'Todd' SHOULD replace old score"
     name, score, expected = self.name_score_exp[0]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "I'm not quite dead yet.")
예제 #10
0
 def test_new_player(self):
     "New player 'BlackKnight' should be added to shelf file"
     name, score, expected = self.name_score_exp[2]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "It's just a scratch!")
예제 #11
0
 def test_get_existing_high(self):
     "New score for 'Bill' should NOT replace old score"
     name, score, expected = self.name_score_exp[1]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "Spank ME!")
예제 #12
0
 def test_get_new_high(self):
     "New score for 'Todd' SHOULD replace old score"
     name, score, expected = self.name_score_exp[0]
     observed = high_score.highScore(name, score)
     self.assertEqual(observed, expected, "I'm not quite dead yet.")