Skip to content

Commit

Permalink
test: add invalid files tests on new bytes iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
vthib committed Mar 5, 2023
1 parent f858d45 commit 508ce60
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rule a {
condition:
for any i in ("a", "b"):
(i >= 2)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
rule a {
condition:
for any i in (true, false): (i)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
rule a {
condition:
for any i in (1, 2, "a", 3): (i)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rule a {
condition:
for any i in (1, 2, 3):
(i startswith "a")
}

0 comments on commit 508ce60

Please sign in to comment.