(self)
| 757 | self.assert_func_defs_same(defs) |
| 758 | |
| 759 | def test_user_func_in___main__(self): |
| 760 | with using___main__() as mod: |
| 761 | defs = load_defs(mod) |
| 762 | self.assert_func_defs_same(defs) |
| 763 | |
| 764 | def test_user_func_not_in___main___with_filename(self): |
| 765 | with using___main__() as mod: |
nothing calls this directly
no test coverage detected