Commit 4d86b4a2 authored by jim's avatar jim

Used new API for test server management


git-svn-id: http://svn.zope.org/repos/main/zc.buildout/trunk@68919 62d5b8a3-27da-0310-9561-8e5933582275
parent 2da6f4da
......@@ -66,14 +66,7 @@ It is an error to create a variable-reference cycle:
def linkerSetUp(test):
zc.buildout.testing.buildoutSetUp(test, clear_home=False)
zc.buildout.testing.multi_python(test)
test.globs['link_server'] = (
'http://localhost:%s/'
% zc.buildout.testing.start_server(zc.buildout.testing.make_tree(test))
)
def linkerTearDown(test):
zc.buildout.testing.buildoutTearDown(test)
zc.buildout.testing.stop_server(test.globs['link_server'])
zc.buildout.testing.setUpServer(test, zc.buildout.testing.make_tree(test))
class PythonNormalizing(renormalizing.RENormalizing):
......@@ -149,7 +142,7 @@ def test_suite():
doctest.DocFileSuite(
'easy_install.txt',
setUp=linkerSetUp, tearDown=linkerTearDown,
setUp=linkerSetUp, tearDown=zc.buildout.testing.buildoutTearDown,
checker=PythonNormalizing([
(re.compile("'%(sep)s\S+sample-install%(sep)s(dist%(sep)s)?"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment