Exemplo n.º 1
0
 def test_typeerror(self, apply_kwargs, myfunc):
     with pytest.raises(TypeError):
         apply_kwargs(myfunc, two='two', four=4)
Exemplo n.º 2
0
 def test_typeerror(self, apply_kwargs, myfunc):
     with pytest.raises(TypeError):
         apply_kwargs(myfunc, two='two', four=4)
Exemplo n.º 3
0
 def test_it(self, apply_kwargs, myfunc):
     apply_kwargs(myfunc, one=1, two='two', four=4)
     assert myfunc.calls == [(1, 'two', 'three')]
Exemplo n.º 4
0
 def test_it(self, apply_kwargs, myfunc):
     apply_kwargs(myfunc, one=1, two='two', four=4)
     assert myfunc.calls == [(1, 'two', 'three')]