diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-02-16 16:16:33 +0100 |
commit | d448b16f969be780444190d178dad4c8b2347612 (patch) | |
tree | 70518229a92bf0e7b5cdc2497bd59356de1d47a3 /tests/test-match-pattern.js | |
parent | 10dcf8de5c6965832452c538451d6170b3bafb66 (diff) | |
download | bugzilla-triage-d448b16f969be780444190d178dad4c8b2347612.tar.gz |
Fix the password recognition.
* doh! !== instead of ===
* also skip attachment.cgi page
Diffstat (limited to 'tests/test-match-pattern.js')
-rw-r--r-- | tests/test-match-pattern.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test-match-pattern.js b/tests/test-match-pattern.js new file mode 100644 index 0000000..ed51b43 --- /dev/null +++ b/tests/test-match-pattern.js @@ -0,0 +1,11 @@ +var { MatchPattern } = require("match-pattern"); + +exports.ensureMatchPattern = function (test) { + var pattern = new MatchPattern("https://bugzilla.redhat.com/attachment.cgi"); + console.log("pattern = " + pattern); + test.assert(pattern. + test("https://bugzilla.redhat.com/attachment.cgi"), "testing match pattern"); + test.assert(!pattern. + test("https://bugzilla.redhat.com/attachment.cgi?bugid=676538&action=enter"), + "testing failing match pattern"); +}; |