Exemplo n.º 1
0
 def load_json_in_different_positions(self):
     return exjson.load(get_sample_json_file_path("multi-include.json"),
                        encoding='utf-8')
Exemplo n.º 2
0
 def load_json_with_comments_and_included_files(self):
     return exjson.load(get_sample_json_file_path("pipeline.json"))
Exemplo n.º 3
0
 def load_json_with_comments(self):
     return exjson.load(
         get_sample_json_file_path("pipeline.stage.001.json"))
Exemplo n.º 4
0
 def load_simple_json(self):
     return exjson.load(get_sample_json_file_path("clean-simple.json"))
Exemplo n.º 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')
Exemplo n.º 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')