summaryrefslogtreecommitdiff
path: root/tests/manual_test.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-13 11:40:24 -0700
committerGitHub <noreply@github.com>2016-07-13 11:40:24 -0700
commit45de6ea8b9392771a6a14e012605614a7c148506 (patch)
tree3e4da3d54bbaf13ce12f706b727b6dc05927a931 /tests/manual_test.py
parentae285153bcd229236bbb8ecbf94ab803213ec82e (diff)
parent6d11e88f938f09ef16db4c6064b6e74acba4db1d (diff)
downloadpython-setuptools-git-45de6ea8b9392771a6a14e012605614a7c148506.tar.gz
Merge pull request #632 from stepshal/blank_lines
Fix quantity of blank lines after code object.
Diffstat (limited to 'tests/manual_test.py')
-rw-r--r--tests/manual_test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/manual_test.py b/tests/manual_test.py
index 808fa55a..0904b607 100644
--- a/tests/manual_test.py
+++ b/tests/manual_test.py
@@ -10,9 +10,11 @@ from string import Template
from six.moves import urllib
+
def _system_call(*args):
assert subprocess.call(args) == 0
+
def tempdir(func):
def _tempdir(*args, **kwargs):
test_dir = tempfile.mkdtemp()
@@ -62,6 +64,7 @@ def test_virtualenv():
res = f.read()
assert 'setuptools' in res
+
@tempdir
def test_full():
"""virtualenv + pip + buildout"""