Beispiel #1
0
 def load_json_in_different_positions(self):
     return exjson.load(get_sample_json_file_path("multi-include.json"),
                        encoding='utf-8')
Beispiel #2
0
 def load_json_with_comments_and_included_files(self):
     return exjson.load(get_sample_json_file_path("pipeline.json"))
Beispiel #3
0
 def load_json_with_comments(self):
     return exjson.load(
         get_sample_json_file_path("pipeline.stage.001.json"))
Beispiel #4
0
 def load_simple_json(self):
     return exjson.load(get_sample_json_file_path("clean-simple.json"))
Beispiel #5
0
 def loads_json_with_multiple_level_recursion_detection(self):
     return exjson.load(get_sample_json_file_path(
         "multi-level-include/multi-level-include-recursive-first.json"),
                        encoding='utf-8')
Beispiel #6
0
 def loads_json_with_multi_level_include(self):
     return exjson.load(get_sample_json_file_path(
         "multi-level-include/multi-level-include-main.json"),
                        encoding='utf-8')