Skip to content
Snippets Groups Projects

ENH: JsonSchemaExporter accepts do_not_create parameter.

Merged Florian Spreckelsen requested to merge release-v0.9.0 into main
1 file
+ 13
0
Compare changes
  • Side-by-side
  • Inline
@@ -279,6 +279,7 @@ def test_rt_with_references():
rt.add_property(name="RefProp", datatype=db.REFERENCE)
schema = rtjs(rt)
props = schema["properties"]
rt = db.RecordType()
rt.add_property(name="RefProp", datatype="OtherType")
@@ -295,6 +296,18 @@ def test_rt_with_references():
schema = rtjs(rt)
rt = db.RecordType()
rt.add_property(name="FileProp", datatype=db.FILE)
with raises(NotImplementedError):
schema = rtjs(rt)
rt = db.RecordType()
rt.add_property(name="FileProp", datatype=db.LIST(db.FILE))
with raises(NotImplementedError):
schema = rtjs(rt)
def test_broken():
Loading