| 102 | |
| 103 | def test_GetFunctionTestMixin_class(): |
| 104 | class TestCustomGetFail(GetFunctionTestMixin): |
| 105 | get = staticmethod(lambda x, y: 1) |
| 106 | |
| 107 | custom_testget = TestCustomGetFail() |
| 108 | pytest.raises(AssertionError, custom_testget.test_get) |
no outgoing calls
searching dependent graphs…