##// END OF EJS Templates
Add proper tests to importstring.
Add proper tests to importstring.

File last commit:

r8247:ce85550a
r11017:8ce76a8b
Show More
test_tempdir.py
20 lines | 710 B | text/x-python | PythonLexer
Takafumi Arakaki
Do not use NamedTemporaryFile in handle_image_tempfile...
r8246 #-----------------------------------------------------------------------------
# Copyright (C) 2012- The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
import os
from IPython.utils.tempdir import NamedFileInTemporaryDirectory
def test_named_file_in_temporary_directory():
with NamedFileInTemporaryDirectory('filename') as file:
name = file.name
assert not file.closed
assert os.path.exists(name)
Takafumi Arakaki
Fix failing test in Python 3
r8247 file.write(b'test')
Takafumi Arakaki
Do not use NamedTemporaryFile in handle_image_tempfile...
r8246 assert file.closed
assert not os.path.exists(name)