[svn r62430] honour unitttest function default values for pyfuncarg protocol

--HG--
branch : trunk
This commit is contained in:
hpk
2009-03-02 23:43:31 +01:00
parent 7765dda208
commit fbe8315f76
2 changed files with 34 additions and 3 deletions

View File

@@ -229,9 +229,30 @@ class TestFunction:
assert not f1 != f1_b
def test_pyfuncarg_lookupfails(self, testdir):
item = testdir.getitem("def test_func(some, other): pass")
item = testdir.getitem("def test_func(some): pass")
kw = py.test.raises(LookupError, "item.lookup_allargs()")
def test_pyfuncarg_lookup_default(self, testdir):
item = testdir.getitem("def test_func(some, other=42): pass")
class Provider:
def pytest_pyfuncarg_some(self, pyfuncitem):
return pyfuncitem.name
item._config.pytestplugins.register(Provider())
kw = item.lookup_allargs()
assert len(kw) == 1
def test_pyfuncarg_lookup_default_gets_overriden(self, testdir):
item = testdir.getitem("def test_func(some=42, other=13): pass")
class Provider:
def pytest_pyfuncarg_other(self, pyfuncitem):
return pyfuncitem.name
item._config.pytestplugins.register(Provider())
kw = item.lookup_allargs()
assert len(kw) == 1
name, value = kw.popitem()
assert name == "other"
assert value == item.name
def test_pyfuncarg_basic(self, testdir):
item = testdir.getitem("def test_func(some, other): pass")
class Provider: