@Test
public void instructionsForTableTable() throws Exception {
makeTableTableAndBuildInstructions(tableTableHeader + "|a|b|\n|x|y|\n");
List<Instruction> expectedInstructions = asList(
new MakeInstruction("tableTable_id_0", "tableTable_id", "fixture", new Object[]{"argument"}),
new CallInstruction("tableTable_id_1", "tableTable_id", "doTable", new Object[]{asList(asList("a", "b"), asList("x", "y"))})
);
assertEquals(expectedInstructions, instructions());
}