Behavior specs cleanup: Make |toParse| work without expected value
This means we can assert just "this string parses" and ignore the returned value.
This commit is contained in:
parent
ce91921a1d
commit
2faff0000e
|
@ -38,6 +38,7 @@ describe("generated parser behavior", function() {
|
||||||
try {
|
try {
|
||||||
result = this.actual.parse(input, options);
|
result = this.actual.parse(input, options);
|
||||||
|
|
||||||
|
if (arguments.length > 1) {
|
||||||
this.message = function() {
|
this.message = function() {
|
||||||
return "Expected " + jasmine.pp(input) + " "
|
return "Expected " + jasmine.pp(input) + " "
|
||||||
+ "with options " + jasmine.pp(options) + " "
|
+ "with options " + jasmine.pp(options) + " "
|
||||||
|
@ -47,11 +48,14 @@ describe("generated parser behavior", function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
return this.env.equals_(result, expected);
|
return this.env.equals_(result, expected);
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.message = function() {
|
this.message = function() {
|
||||||
return "Expected " + jasmine.pp(input) + " "
|
return "Expected " + jasmine.pp(input) + " "
|
||||||
+ "with options " + jasmine.pp(options) + " "
|
+ "with options " + jasmine.pp(options) + " "
|
||||||
+ "to parse as " + jasmine.pp(expected) + ", "
|
+ "to parse" + (arguments.length > 1 ? " as " + jasmine.pp(expected) : "") + ", "
|
||||||
+ "but it failed to parse with message "
|
+ "but it failed to parse with message "
|
||||||
+ jasmine.pp(e.message) + ".";
|
+ jasmine.pp(e.message) + ".";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue