Skip to content

Commit

Permalink
add unit test to verify CCL-11 isn't an issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jtnelson committed Mar 26, 2018
1 parent 64440a4 commit e1c675e
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -711,12 +711,11 @@ public void testParseCclNoSpaces() {
String ccl = "name=jeff";
parser.order(parser.tokenize(ccl));
}

@Test
public void testReproCCL_11() {
String ccl = "user LINKS_TO 1234";
Parser parser = Parsers.create(ccl);
System.out.println(parser.parse());
parser.tokenize(ccl);
Assert.assertTrue(true); // lack of Exception means we pass
}
}

0 comments on commit e1c675e

Please sign in to comment.