You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
369 B
14 lines
369 B
# Tests rblf_regex
|
|
load("assert.star", "assert")
|
|
|
|
|
|
def test():
|
|
pattern = "^(foo.*bar|abc.*d|1.*)$"
|
|
for w in ("foobar", "fooxbar", "abcxd", "123"):
|
|
assert.true(rblf_regex(pattern, w), "%s should match %s" % (w, pattern))
|
|
for w in ("afoobar", "abcde"):
|
|
assert.true(not rblf_regex(pattern, w), "%s should not match %s" % (w, pattern))
|
|
|
|
|
|
test()
|