MCPcopy Index your code
hub / github.com/nodejs/node / MakeEmptyTempFile

Method MakeEmptyTempFile

deps/v8/tools/release/test_scripts.py:196–200  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

194
195class ScriptTest(unittest.TestCase):
196 def MakeEmptyTempFile(self):
197 handle, name = tempfile.mkstemp()
198 os.close(handle)
199 self._tmp_files.append(name)
200 return name
201
202 def MakeEmptyTempDirectory(self):
203 name = tempfile.mkdtemp()

Callers 2

testRollMergeMethod · 0.95
testMergeToBranchMethod · 0.95

Calls 2

closeMethod · 0.65
appendMethod · 0.45

Tested by

no test coverage detected