(self)
| 56 | self.sc = Schemas(discovery) |
| 57 | |
| 58 | def test_basic_formatting(self): |
| 59 | self.assertEqual( |
| 60 | sorted(LOAD_FEED.splitlines()), |
| 61 | sorted(self.sc.prettyPrintByName("LoadFeed").splitlines()), |
| 62 | ) |
| 63 | |
| 64 | def test_empty_edge_case(self): |
| 65 | self.assertTrue("Unknown type" in self.sc.prettyPrintSchema({})) |
nothing calls this directly
no test coverage detected