[svn r37919] use a less ambigous test package name
--HG-- branch : trunk
This commit is contained in:
parent
a7de613ed0
commit
a128ecb8cf
|
@ -96,7 +96,7 @@ def test_dispatch_loop():
|
||||||
class TestSlave:
|
class TestSlave:
|
||||||
def setup_class(cls):
|
def setup_class(cls):
|
||||||
cls.tmpdir = tmpdir = py.test.ensuretemp(cls.__name__)
|
cls.tmpdir = tmpdir = py.test.ensuretemp(cls.__name__)
|
||||||
pkgpath = tmpdir.join("pkg")
|
cls.pkgpath = pkgpath = tmpdir.join("slavetestpkg")
|
||||||
pkgpath.ensure("__init__.py")
|
pkgpath.ensure("__init__.py")
|
||||||
pkgpath.join("test_something.py").write(py.code.Source("""
|
pkgpath.join("test_something.py").write(py.code.Source("""
|
||||||
def funcpass():
|
def funcpass():
|
||||||
|
@ -114,10 +114,11 @@ class TestSlave:
|
||||||
return self.config.get_collector_trail(item)
|
return self.config.get_collector_trail(item)
|
||||||
|
|
||||||
def test_slave_setup(self):
|
def test_slave_setup(self):
|
||||||
|
pkgname = self.pkgpath.basename
|
||||||
host = HostInfo("localhost:%s" %(self.tmpdir,))
|
host = HostInfo("localhost:%s" %(self.tmpdir,))
|
||||||
host.initgateway()
|
host.initgateway()
|
||||||
channel = setup_slave(host, self.config)
|
channel = setup_slave(host, self.config)
|
||||||
spec = self._gettrail("pkg", "test_something.py", "funcpass")
|
spec = self._gettrail(pkgname, "test_something.py", "funcpass")
|
||||||
print "sending", spec
|
print "sending", spec
|
||||||
channel.send(spec)
|
channel.send(spec)
|
||||||
output = ReprOutcome(channel.receive())
|
output = ReprOutcome(channel.receive())
|
||||||
|
|
Loading…
Reference in New Issue