(self)
| 647 | self.assert_class_defs_same(defs) |
| 648 | |
| 649 | def test_user_class_in___main__(self): |
| 650 | with using___main__() as mod: |
| 651 | defs = load_defs(mod) |
| 652 | self.assert_class_defs_same(defs) |
| 653 | |
| 654 | def test_user_class_not_in___main___with_filename(self): |
| 655 | with using___main__() as mod: |
nothing calls this directly
no test coverage detected