String guts = "META NAME=\"" + author + "\" CONTENT = \"" + content + "\"";
String testHTML = "<" + guts + ">";
createParser(testHTML);
parseAndAssertNodeCount(1);
assertTrue("Node should be a tag",node[0] instanceof Tag);
Tag tag = (Tag)node[0];
assertStringEquals("Node contents",guts,tag.getText());
assertEquals("Meta Content",author,tag.getAttribute("NAME"));
//
// Big todo here:
// This involves a change in the lexer state machine from
// six states to probably 8, or perhaps a half dozen 'substates'