Beispiel #1
0
 def test_below_range(self):
     with self.assertRaises(ValueError):
         topic1.get_input()
 def test_make_list_non_numeric(self, input):
     with self.assertRaises(ValueError):
         basic_list_exception.get_input()
 def test_make_list_below_range(self, input):
     self.assertLess(basic_list_exception.get_input(), 1)
 def test_make_list_above_range(self, input):
     self.assertGreater(basic_list_exception.get_input(), 50)