def test_format_output_with_person_2(self):
     person = Person('Al Coholic', '456')
     result = format_output(person)
     self.assertEqual(result, 'This number belongs to: ' + 'Al Coholic')
 def test_format_output_with_person_1(self):
     person = Person('Hugh Jass', '123')
     result = format_output(person)
     self.assertEqual(result, 'This number belongs to: ' + 'Hugh Jass')
 def test_format_output_with_none(self):
     result = format_output(None)
     self.assertEqual(result, 'No match found.')
 def test_format_output_with_person_2(self):
     person = Person('Al Coholic', '456')
     result = format_output(person)
     self.assertEqual(result, 'This number belongs to: ' + 'Al Coholic')
 def test_format_output_with_person_1(self):
     person = Person('Hugh Jass', '123')
     result = format_output(person)
     self.assertEqual(result, 'This number belongs to: ' + 'Hugh Jass')
 def test_format_output_with_none(self):
     result = format_output(None)
     self.assertEqual(result, 'No match found.')