예제 #1
0
 def test_get_default(self):
     config = Config(self.conf_file)
     runtime = config.get_default().get('configuration').get('runtime')
     eq_(runtime, 'python2.7')
     subnets = config.get_default().get('configuration').get(
         'vpc_config').get('subnets')
     eq_(subnets, ['subnet-xxxxxxxx'])
예제 #2
0
파일: config_test.py 프로젝트: ijin/lamvery
 def test_get_default(self):
     config = Config(self.conf_file)
     runtime = config.get_default().get('configuration').get('runtime')
     eq_(runtime, 'python2.7')
예제 #3
0
 def test_get_default(self):
     config = Config(self.conf_file)
     runtime = config.get_default().get("configuration").get("runtime")
     eq_(runtime, "python2.7")
예제 #4
0
 def test_get_default(self):
     config = Config(self.conf_file)
     runtime = config.get_default().get('configuration').get('runtime')
     eq_(runtime, 'python2.7')
     subnets = config.get_default().get('configuration').get('vpc_config').get('subnets')
     eq_(subnets, ['subnet-xxxxxxxx'])
예제 #5
0
파일: config_test.py 프로젝트: ijin/lamvery
 def test_get_default(self):
     config = Config(self.conf_file)
     runtime = config.get_default().get('configuration').get('runtime')
     eq_(runtime, 'python2.7')