コード例 #1
0
 def test_equals(self):
     porsche = Vehicle(2, 4, 'Gas')
     self.assertEqual(
         show_me(porsche), 'Hi, I\'m one of those Vehicles! '
         'Have a look at my engine, seats '
         'and wheels.')
コード例 #2
0
 def test_equals(self):
     porsche = Vehicle(2, 4, 'Gas')
     self.assertEqual(show_me(porsche), 'Hi, I\'m one of those Vehicles! '
                                        'Have a look at my engine, seats '
                                        'and wheels.')
コード例 #3
0
 def test_equals_2(self):
     earth = Planet('moon')
     self.assertEqual(
         show_me(earth), 'Hi, I\'m one of those Planets! Have'
         ' a look at my moon.')
コード例 #4
0
 def test_equals_2(self):
     earth = Planet('moon')
     self.assertEqual(show_me(earth), 'Hi, I\'m one of those Planets! Have'
                                      ' a look at my moon.')