You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
482 B
JavaScript
19 lines
482 B
JavaScript
/* jshint jasmine:true */
|
|
/* global PEG */
|
|
|
|
"use strict";
|
|
|
|
describe("compiler pass |reportMissingRules|", function() {
|
|
var pass = PEG.compiler.passes.check.reportMissingRules;
|
|
|
|
it("reports missing rules", function() {
|
|
expect(pass).toReportError('start = missing', {
|
|
message: 'Referenced rule "missing" does not exist.',
|
|
location: {
|
|
start: { offset: 8, line: 1, column: 9 },
|
|
end: { offset: 15, line: 1, column: 16 }
|
|
}
|
|
});
|
|
});
|
|
});
|