Add failing test for #352.

It appears that the preproc is only bringing in the first arg in rewrite and this commit adds a test to check that other arguments also come over.
This commit is contained in:
A Pottinger
2022-02-03 08:47:01 -08:00
parent 9e80506652
commit 63b8aa5753

View File

@@ -325,6 +325,11 @@ public class ParserTests {
expectGood("fullscreen", true);
}
@Test
public void fullscreenArg() {
expectGood("fullscreen_arg", true);
}
@Test
public void customMain() {
expectGood("custommain", true);