Set a location by default

This commit is contained in:
Julien Duponchelle
2015-01-23 17:39:17 +01:00
parent 7bed9f56bc
commit 8e249b670d
4 changed files with 52 additions and 2 deletions

View File

@ -130,3 +130,11 @@ def test_project_close_temporary_project(manager):
assert os.path.exists(directory)
project.close()
assert os.path.exists(directory) is False
def test_get_default_project_directory():
project = Project()
path = os.path.normpath(os.path.expanduser("~/GNS3/projects"))
assert project._get_default_project_directory() == path
assert os.path.exists(path)