1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Copyright the Hypothesis Authors.
# Individual contributors are listed in AUTHORS.rst and the git log.
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
import os
from hypothesis import configuration as fs
previous_home_dir = None
def setup_function(function):
global previous_home_dir
previous_home_dir = fs.storage_directory()
fs.set_hypothesis_home_dir(None)
def teardown_function(function):
global previous_home_dir
fs.set_hypothesis_home_dir(previous_home_dir)
previous_home_dir = None
def test_defaults_to_the_default():
assert fs.storage_directory() == fs.__hypothesis_home_directory_default
def test_can_set_homedir_and_it_will_exist(tmpdir):
fs.set_hypothesis_home_dir(str(tmpdir.mkdir("kittens")))
d = fs.storage_directory()
assert "kittens" in d
assert os.path.exists(d)
def test_will_pick_up_location_from_env(monkeypatch, tmpdir):
tmpdir = str(tmpdir)
monkeypatch.setattr(os, "environ", {"HYPOTHESIS_STORAGE_DIRECTORY": tmpdir})
assert fs.storage_directory() == tmpdir
def test_storage_directories_are_not_created_automatically(tmpdir):
fs.set_hypothesis_home_dir(str(tmpdir))
assert not os.path.exists(fs.storage_directory("badgers"))
|