コード例 #1
0
ファイル: test_apollo_client.py プロジェクト: yzlit/pyapollo
 def test_get_value3(self):
     client = ApolloClient()
     client.init_with_conf()
     name = client.get_value(namespace='mongodb1.yaml',
                             key="name2",
                             default_val="默认值+")
     print name
コード例 #2
0
ファイル: test_apollo_client.py プロジェクト: yzlit/pyapollo
 def test_get_value0(self):
     client = ApolloClient()
     client.init_with_conf()
     path = client.get_value(namespace="redis.json", key='path')
     print path
     self.assertEquals(path, "/usr/alphatest")
コード例 #3
0
ファイル: test_apollo_client.py プロジェクト: yzlit/pyapollo
 def test_get_value1(self):
     client = ApolloClient()
     client.init_with_conf()
     name = client.get_value(namespace='mongodb.yaml', key="name")
     print name
コード例 #4
0
ファイル: test_apollo_client.py プロジェクト: yzlit/pyapollo
 def test_get_value(self):
     client = ApolloClient()
     client.init_with_conf()
     timeout = client.get_value(key='timeout')
     self.assertEquals(timeout, 85)