blob: 9e3d2bd9f07e96ff43bdbab8da5a714b1607ecd8 (
plain) (
tree)
|
|
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");
};
|