(self)
| 831 | eq_(sorted(m2.schemas), ["w", "x", "y"]) |
| 832 | |
| 833 | def test_get_schema_objects_empty(self): |
| 834 | eq_(MetaData().get_schema_objects(Enum), ()) |
| 835 | |
| 836 | def test_get_schema_objects(self): |
| 837 | class MyEnum(Enum): |
nothing calls this directly
no test coverage detected