(self)
| 88 | ) |
| 89 | |
| 90 | def test_string_default(self): |
| 91 | self.assertEqual( |
| 92 | "foo", eval(self.sc.prettyPrintSchema({"type": "string", "default": "foo"})) |
| 93 | ) |
| 94 | |
| 95 | def test_integer_default(self): |
| 96 | self.assertEqual( |
nothing calls this directly
no test coverage detected