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