(self)
| 790 | self.assert_func_defs_other_unpickle(defs, mod, fail=True) |
| 791 | |
| 792 | def test_user_func_in_module(self): |
| 793 | with temp_module('__spam__') as mod: |
| 794 | defs = load_defs(mod) |
| 795 | self.assert_func_defs_same(defs) |
| 796 | |
| 797 | def test_user_func_not_in_module_with_filename(self): |
| 798 | with temp_module('__spam__') as mod: |
nothing calls this directly
no test coverage detected