(self)
| 680 | self.assert_class_defs_other_unpickle(defs, mod, fail=True) |
| 681 | |
| 682 | def test_user_class_in_module(self): |
| 683 | with temp_module('__spam__') as mod: |
| 684 | defs = load_defs(mod) |
| 685 | self.assert_class_defs_same(defs) |
| 686 | |
| 687 | def test_user_class_not_in_module_with_filename(self): |
| 688 | with temp_module('__spam__') as mod: |
nothing calls this directly
no test coverage detected