diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2023-10-22 12:36:33 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2023-10-22 12:36:33 (GMT) |
commit | f044b0444d72e04f0ec65db8ea192043af2a7998 (patch) | |
tree | a9d7206d2ed5253e560818efaaebc358bb1da70c /tests/analysis/scan | |
parent | 98dab5148243637a4f2d19a7c44b0e643a0e0f8c (diff) |
Expect only one argument for the not operator, even in debug mode.
Diffstat (limited to 'tests/analysis/scan')
-rw-r--r-- | tests/analysis/scan/fuzzing.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/analysis/scan/fuzzing.py b/tests/analysis/scan/fuzzing.py index 53227af..61f4117 100644 --- a/tests/analysis/scan/fuzzing.py +++ b/tests/analysis/scan/fuzzing.py @@ -108,3 +108,18 @@ rule test { ''' self.check_rule_failure(rule) + + + def testSelfReferencingRule(self): + """Expect only one argument for the not operator, even in debug mode.""" + + rule = ''' +rule test { + + condition: + not(0) + +} +''' + + self.check_rule_success(rule) |