コード例 #1
0
 def test_dict(self):
     HEADING()
     config = Config()
     Benchmark.Start()
     result = config.dict()
     Benchmark.Stop()
     print(type(config.data))
     pprint(config['cloudmesh.profile'])
     assert config is not None
コード例 #2
0
    def test_dict(self):
        HEADING()
        config = Config()
        StopWatch.start("dict")
        result = config.dict()
        StopWatch.stop("dict")
        pprint(result)
        print(config)
        print(type(config.data))

        assert config is not None
コード例 #3
0
    def test_dict(self):
        HEADING()
        config = Config()
        Benchmark.Start()
        result = config.dict()
        Benchmark.Stop()
        pprint(result)
        print(config)
        print(type(config.data))

        assert config is not None