(self)
| 65 | self.assertTrue("Unknown type" in self.sc.prettyPrintSchema({})) |
| 66 | |
| 67 | def test_simple_object(self): |
| 68 | self.assertEqual({}, eval(self.sc.prettyPrintSchema({"type": "object"}))) |
| 69 | |
| 70 | def test_string(self): |
| 71 | self.assertEqual( |
nothing calls this directly
no test coverage detected