(self)
| 690 | cls._setup_stock_mapping() |
| 691 | |
| 692 | def test_root_registry(self): |
| 693 | umapper = inspect(self.classes.User) |
| 694 | is_(RootRegistry()[umapper], umapper._path_registry) |
| 695 | eq_(RootRegistry()[umapper], PathRegistry.coerce((umapper,))) |
| 696 | |
| 697 | def test_expand(self): |
| 698 | umapper = inspect(self.classes.User) |
nothing calls this directly
no test coverage detected