コード例 #1
0
ファイル: config_test.py プロジェクト: tkurokawa/lamvery
 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
ファイル: config_test.py プロジェクト: koppeft/lamvery
 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')