(self)
| 121 | ) |
| 122 | |
| 123 | def test_mapper(self): |
| 124 | user_mapper = class_mapper(User) |
| 125 | assert ( |
| 126 | serializer.loads(serializer.dumps(user_mapper, -1), None, None) |
| 127 | is user_mapper |
| 128 | ) |
| 129 | |
| 130 | def test_attribute(self): |
| 131 | assert ( |
nothing calls this directly
no test coverage detected