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.')
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.')
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.')
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.')