Skip to content

Commit

Permalink
improved matches_glob example further
Browse files Browse the repository at this point in the history
  • Loading branch information
landro committed Nov 2, 2013
1 parent b015055 commit ce3924c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verification/test_jtcl_irule_all.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if {"abcdefg" starts_with "ab"} { puts "starts_with works as expected" }
if {"abcdefg" ends_with "efg"} { puts "ends_with works as expected" }
if {"abcdefg" contains "cde"} { puts "contains works as expected" }
if {"abcdefg" matches_glob "abcdefg"} { puts "matches_glob works as expected" }
if {"abcdefg" matches_glob "ab*efg"} { puts "matches_glob works as expected" }
if {"abcdefg" matches_regex "a.cde.*"} { puts "matches_regex works as expected" }

if {"abcdefg" equals "abcdefg"} { puts "equals works as expected" }
Expand Down

0 comments on commit ce3924c

Please sign in to comment.