def p_unparsed(self, p): '''unparsed : UNPARSEDCHUNK''' p[0] = Unparsed(p[1])
def testUnparsedList(self): text="Das ist nicht geparst" g=FoamFileGenerator([Unparsed(text),"nix"]) self.assertEqual(str(g),"(\n "+text+"\n nix\n)\n")
def testUnparsedDict(self): text="Das ist nicht geparst" g=FoamFileGenerator({"a":Unparsed(text),"b":"nix"}) self.assertEqual(str(g),"a "+text+";\nb nix;\n")
def testUnparsed(self): text="Das ist nicht geparst" g=FoamFileGenerator(Unparsed(text)) self.assertEqual(str(g),text)