(self)
| 15 | is to send its contents over the wire and seek to the same position.""" |
| 16 | |
| 17 | def setUp(self): |
| 18 | self.tmpdir = tempfile.mkdtemp() |
| 19 | self.tmpfilepath = os.path.join(self.tmpdir, "testfile") |
| 20 | self.teststring = "Hello world!" |
| 21 | |
| 22 | def tearDown(self): |
| 23 | shutil.rmtree(self.tmpdir) |