We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ced715 commit f1625adCopy full SHA for f1625ad
tests/test_loaders_dumpers/test_loaders.py
@@ -33,6 +33,10 @@ def test_json_loader_path(self):
33
assert isinstance(data, Package)
34
assert "system" in data
35
36
+ def test_json_loader(self):
37
+ """ Load obo_sample.json, emit obo_sample_json.yaml and check the results """
38
+ self.loader_test('obo_sample.json', Package, json_loader)
39
+
40
def test_json_load_to_dict(self):
41
data = json_loader.load_as_dict('obo_sample.json', base_dir=self.env.indir)
42
assert isinstance(data, dict)
0 commit comments