def testWrite(self): b = Bundle(CRTFILE) b.write(BUNDLE) f = open(CRTFILE) s = f.read() f.close() self.assertEqual(BUNDLE.strip(), s.strip())
def testRead(self): b = Bundle(CRTFILE) b.write(BUNDLE) s = b.read() self.assertEqual(BUNDLE.strip(), s.strip())