(self)
| 68 | self.assertEqual({}, eval(self.sc.prettyPrintSchema({"type": "object"}))) |
| 69 | |
| 70 | def test_string(self): |
| 71 | self.assertEqual( |
| 72 | type(""), type(eval(self.sc.prettyPrintSchema({"type": "string"}))) |
| 73 | ) |
| 74 | |
| 75 | def test_integer(self): |
| 76 | self.assertEqual( |
nothing calls this directly
no test coverage detected