We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e1a692 commit 0a8ab1dCopy full SHA for 0a8ab1d
tests/columns/test_base.py
@@ -39,3 +39,13 @@ def test_copy(self):
39
self.assertNotEqual(
40
id(column._meta.call_chain), id(new_column._meta.call_chain)
41
)
42
+
43
44
+class TestHelpText(TestCase):
45
+ def test_help_text(self):
46
+ """
47
+ Test adding help text to a column.
48
49
+ help_text = "This is some important help text for users."
50
+ column = Varchar(help_text=help_text)
51
+ self.assertTrue(column._meta.help_text == help_text)
0 commit comments