##// END OF EJS Templates
Merge pull request #13213 from Kojoley/fix-bunch-of-doctests...
Merge pull request #13213 from Kojoley/fix-bunch-of-doctests Fix bunch of doctests

File last commit:

r26192:abfaafd7
r26940:32497c8d merge
Show More
test_tempdir.py
29 lines | 1.1 KiB | 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.
#-----------------------------------------------------------------------------
Jakub Klus
Use pathlib in utils/tempdir.
r26192 from pathlib import Path
Takafumi Arakaki
Do not use NamedTemporaryFile in handle_image_tempfile...
r8246
from IPython.utils.tempdir import NamedFileInTemporaryDirectory
Paul Ivanov
test for TemporaryWorkingDirectory
r11874 from IPython.utils.tempdir import TemporaryWorkingDirectory
Takafumi Arakaki
Do not use NamedTemporaryFile in handle_image_tempfile...
r8246
def test_named_file_in_temporary_directory():
with NamedFileInTemporaryDirectory('filename') as file:
name = file.name
assert not file.closed
Jakub Klus
Use pathlib in utils/tempdir.
r26192 assert Path(name).exists()
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
Jakub Klus
Use pathlib in utils/tempdir.
r26192 assert not Path(name).exists()
Paul Ivanov
test for TemporaryWorkingDirectory
r11874
def test_temporary_working_directory():
Jakub Klus
Use pathlib in utils/tempdir.
r26192 with TemporaryWorkingDirectory() as directory:
directory_path = Path(directory)
assert directory_path.exists()
assert Path.cwd() == directory_path.resolve()
assert not directory_path.exists()
assert Path.cwd() != directory_path.resolve()