(self)
| 703 | is_(bool(path), True) |
| 704 | |
| 705 | def test_key_boolean(self): |
| 706 | umapper = inspect(self.classes.User) |
| 707 | path = PathRegistry.coerce((umapper, umapper.attrs.addresses)) |
| 708 | is_(bool(path), True) |
| 709 | |
| 710 | def test_aliased_class(self): |
| 711 | User = self.classes.User |