Matchers & Matchers specs now broken up into individual files. There is now a requireMatchers jasmineRequire function to attach matchers properly.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
getJasmineRequireObj().toMatch = function() {
|
||||
|
||||
function toMatch() {
|
||||
return {
|
||||
compare: function(actual, expected) {
|
||||
var regexp = new RegExp(expected);
|
||||
|
||||
return {
|
||||
pass: regexp.test(actual)
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return toMatch;
|
||||
};
|
||||
Reference in New Issue
Block a user