Example #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!")
Example #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.")
Example #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!")
Example #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!")
Example #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!")
Example #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!")
Example #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.")
Example #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!")
Example #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.")
Example #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!")
Example #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!")
Example #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.")