(self)
| 674 | cls._setup_stock_mapping() |
| 675 | |
| 676 | def test_root_registry(self): |
| 677 | umapper = inspect(self.classes.User) |
| 678 | is_(RootRegistry()[umapper], umapper._path_registry) |
| 679 | eq_(RootRegistry()[umapper], PathRegistry.coerce((umapper,))) |
| 680 | |
| 681 | def test_expand(self): |
| 682 | umapper = inspect(self.classes.User) |
nothing calls this directly
no test coverage detected