We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3363e01 commit 0f7e836Copy full SHA for 0f7e836
test/test_spam_check.py
@@ -29,6 +29,8 @@ def test_has_values_but_not_enabled(self):
29
self.assertEqual(spam_check.get(), expected)
30
31
def test_spam_change_properties(self):
32
+ """Tests changing the properties of the spam check class"""
33
+
34
expected = {'enable': False, 'threshold': 10, 'post_to_url': 'https://www.testing.com'}
35
spam_check = SpamCheck(enable=True, threshold=5, post_to_url='https://www.test.com')
36
spam_check.enable = False
0 commit comments