Behavior specs cleanup: Improve label specs
This commit is contained in:
parent
c5c44b9d0c
commit
52144e48cb
|
@ -724,11 +724,20 @@ describe("generated parser behavior", function() {
|
|||
});
|
||||
|
||||
describe("label", function() {
|
||||
it("delegates to the expression", function() {
|
||||
var parser = PEG.buildParser('start = a:"a"', options);
|
||||
describe("when the expression matches", function() {
|
||||
it("returns its match result", function() {
|
||||
var parser = PEG.buildParser('start = a:"a"', options);
|
||||
|
||||
expect(parser).toParse("a", "a");
|
||||
expect(parser).toFailToParse("b");
|
||||
expect(parser).toParse("a", "a");
|
||||
});
|
||||
});
|
||||
|
||||
describe("when the expression doesn't match", function() {
|
||||
it("reports match failure", function() {
|
||||
var parser = PEG.buildParser('start = a:"a"', options);
|
||||
|
||||
expect(parser).toFailToParse("b");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue