(self)
| 31 | class CLIConfigTest(test_util.TensorFlowTestCase): |
| 32 | |
| 33 | def setUp(self): |
| 34 | self._tmp_dir = tempfile.mkdtemp() |
| 35 | self._tmp_config_path = os.path.join(self._tmp_dir, ".tfdbg_config") |
| 36 | self.assertFalse(gfile.Exists(self._tmp_config_path)) |
| 37 | super(CLIConfigTest, self).setUp() |
| 38 | |
| 39 | def tearDown(self): |
| 40 | shutil.rmtree(self._tmp_dir) |