| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 | 2 |
| 3 import json | 3 import json |
| 4 | 4 |
| 5 from tests.unit import AWSMockServiceTestCase | 5 from tests.unit import AWSMockServiceTestCase |
| 6 | 6 |
| 7 from boto.beanstalk.layer1 import Layer1 | 7 from boto.beanstalk.layer1 import Layer1 |
| 8 | 8 |
| 9 # These tests are just checking the basic structure of | 9 # These tests are just checking the basic structure of |
| 10 # the Elastic Beanstalk code, by picking a few calls | 10 # the Elastic Beanstalk code, by picking a few calls |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'TemplateName': '32bit Amazon Linux running Tomcat 7', | 136 'TemplateName': '32bit Amazon Linux running Tomcat 7', |
| 137 'ContentType': 'JSON', | 137 'ContentType': 'JSON', |
| 138 'Version': '2010-12-01', | 138 'Version': '2010-12-01', |
| 139 'VersionLabel': 'version1', | 139 'VersionLabel': 'version1', |
| 140 'OptionSettings.member.1.Namespace': 'aws:autoscaling:launchconfigur
ation', | 140 'OptionSettings.member.1.Namespace': 'aws:autoscaling:launchconfigur
ation', |
| 141 'OptionSettings.member.1.OptionName': 'Ec2KeyName', | 141 'OptionSettings.member.1.OptionName': 'Ec2KeyName', |
| 142 'OptionSettings.member.1.Value': 'mykeypair', | 142 'OptionSettings.member.1.Value': 'mykeypair', |
| 143 'OptionSettings.member.2.Namespace': 'aws:elasticbeanstalk:applicati
on:environment', | 143 'OptionSettings.member.2.Namespace': 'aws:elasticbeanstalk:applicati
on:environment', |
| 144 'OptionSettings.member.2.OptionName': 'ENVVAR', | 144 'OptionSettings.member.2.OptionName': 'ENVVAR', |
| 145 'OptionSettings.member.2.Value': 'VALUE1', | 145 'OptionSettings.member.2.Value': 'VALUE1', |
| 146 'Tier.member.Name': 'Worker', | 146 'Tier.Name': 'Worker', |
| 147 'Tier.member.Type': 'SQS/HTTP', | 147 'Tier.Type': 'SQS/HTTP', |
| 148 'Tier.member.Version': '1.0', | 148 'Tier.Version': '1.0', |
| 149 }) | 149 }) |
| OLD | NEW |