Skip to content

Commit

Permalink
Create test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Nov 8, 2021
1 parent 377b2ed commit 0bc1516
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions hypothesis-python/tests/pytest/test_no_plugin_side_effects.py
@@ -0,0 +1,45 @@
# This file is part of Hypothesis, which may be found at
# https://github.com/HypothesisWorks/hypothesis/
#
# Most of this work is copyright (C) 2013-2021 David R. MacIver
# (david@drmaciver.com), but it contains contributions by others. See
# CONTRIBUTING.rst for a full list of people who may hold copyright, and
# consult the git log if you need to determine who owns an individual
# contribution.
#
# 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/.
#
# END HEADER

import os
import subprocess

DOES_NOT_WRITE_CHARMAP = """
from hypothesis import given, strategies as st
def test():
pass
"""
WRITES_CHARMAP = """
from hypothesis import given, strategies as st
@given(st.text())
def test(s):
pass
"""


def test_does_not_create_dir_unless_actually_using_hypothesis(tmp_path):
pyfile = tmp_path / "test.py"
env = {**os.environ, "HYPOTHESIS_STORAGE_DIRECTORY": ".hypothesis"}
expected = {"test.py", ".pytest_cache"}

pyfile.write_text(DOES_NOT_WRITE_CHARMAP)
subprocess.check_call(["pytest", "test.py"], env=env, cwd=tmp_path)
assert {p.name for p in tmp_path.iterdir()} == expected

pyfile.write_text(WRITES_CHARMAP)
subprocess.check_call(["pytest", "test.py"], env=env, cwd=tmp_path)
assert {p.name for p in tmp_path.iterdir()} == expected | {".hypothesis"}

0 comments on commit 0bc1516

Please sign in to comment.