(self)
| 100 | return args, kwargs |
| 101 | |
| 102 | def test_call(self): |
| 103 | func_container = FunctionContainer( |
| 104 | self.get_args_kwargs, 'foo', bar='baz' |
| 105 | ) |
| 106 | self.assertEqual(func_container(), (('foo',), {'bar': 'baz'})) |
| 107 | |
| 108 | def test_repr(self): |
| 109 | func_container = FunctionContainer( |
nothing calls this directly
no test coverage detected