Esempio n. 1
0
 def test_typeerror(self, apply_kwargs, myfunc):
     with pytest.raises(TypeError):
         apply_kwargs(myfunc, two='two', four=4)
Esempio n. 2
0
 def test_typeerror(self, apply_kwargs, myfunc):
     with pytest.raises(TypeError):
         apply_kwargs(myfunc, two='two', four=4)
Esempio 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')]
Esempio 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')]