We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93be12 commit 92f3e33Copy full SHA for 92f3e33
tests/columns/test_bigint.py
@@ -27,12 +27,15 @@ def test_length(self):
27
max_value = int(2 ** 64 / 2) - 1
28
min_value = max_value * -1
29
30
+ print("Testing max value")
31
row = MyTable(value=max_value)
32
row.save().run_sync()
33
34
+ print("Testing min value")
35
row.value = min_value
36
37
38
+ print("Test exceeding max value")
39
with self.assertRaises(Exception):
40
row.value = max_value + 100
41
0 commit comments