def test2_1_wiered_chars(self):
for char in l_wchar:
self.assertFalse(is_number(char), msg='failed for char {}'.format(char) )
I was passing a list to the function is_number
to check if it is not a number. The list has the combination of letters and numbers. The test fails when it hits the first number as expected. But it breaks out of the loop and does not show how does it behave with the rest of the indexes of the list. what is correct way to test all the values of the list in one test case?