def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Beispiel #6
0
 def test_bigger_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
Beispiel #7
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
Beispiel #9
0
 def test_smaller_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
Beispiel #10
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Beispiel #11
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
     with raises(AssertionError):
         assert_max_length(self.user, 'fav_numbers', 9)
Beispiel #12
0
 def test_bigger_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 151)
Beispiel #13
0
 def test_smaller_than_max_value(self):
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
     with raises(AssertionError):
         assert_max_value(self.user, 'age', 149)
Beispiel #14
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
Beispiel #15
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
Beispiel #16
0
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)