##// END OF EJS Templates
Fix disabling auto-suggestions (#13914)...
Fix disabling auto-suggestions (#13914) This should fix #13913 but I could not reproduce it in the first place. It looks like the traitlets initialization was invoking setter handler before the `__init__` had time to set `auto_suggest = None`; this is now changed so that `auto_suggest` is set to `None` on class level. It might be not as elegant because it makes it a class variable but in fact `pt_app` also uses the same pattern and since `auto_suggest` is only used on `pt_app` there is no reason not to use this pattern. Also, the type annotation was in a wrong class, I moved it.

File last commit:

r27126:8e428a71
r28069:4d9852db 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:
Nikita Kniazev
On Windows `Path.cwd()` might be in short filename/SFN format
r27126 directory_path = Path(directory).resolve()
Jakub Klus
Use pathlib in utils/tempdir.
r26192 assert directory_path.exists()
Nikita Kniazev
On Windows `Path.cwd()` might be in short filename/SFN format
r27126 assert Path.cwd().resolve() == directory_path
Jakub Klus
Use pathlib in utils/tempdir.
r26192 assert not directory_path.exists()
Nikita Kniazev
On Windows `Path.cwd()` might be in short filename/SFN format
r27126 assert Path.cwd().resolve() != directory_path