(self)
| 56 | class CursesTest(test_util.TensorFlowTestCase): |
| 57 | |
| 58 | def setUp(self): |
| 59 | self._tmp_dir = tempfile.mkdtemp() |
| 60 | self._tmp_config_path = os.path.join(self._tmp_dir, ".tfdbg_config") |
| 61 | self.assertFalse(gfile.Exists(self._tmp_config_path)) |
| 62 | super(CursesTest, self).setUp() |
| 63 | |
| 64 | def tearDown(self): |
| 65 | shutil.rmtree(self._tmp_dir) |