Example #1
0
 def test_bigger_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 21)
Example #2
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
Example #3
0
 def test_smaller_than_max_length(self):
     with raises(AssertionError):
         assert_max_length(self.user, 'name', 19)
Example #4
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
Example #5
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Example #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)
Example #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)
Example #8
0
 def test_non_nullable_column(self):
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
     with raises(AssertionError):
         assert_nullable(self.user, 'age')
Example #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)
Example #10
0
 def test_non_matchin_exception(self):
     with pytest.raises(Exception):
         with raises(ValueError):
             raise Exception()
Example #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)
Example #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)
Example #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)
Example #14
0
 def test_matching_exception(self):
     with raises(Exception):
         raise Exception()
     assert True
Example #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)
Example #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)