(self)
| 20 | |
| 21 | class TestArgsResolution(BaseAWSCommandParamsTest): |
| 22 | def setUp(self): |
| 23 | super(TestArgsResolution, self).setUp() |
| 24 | self.files = FileCreator() |
| 25 | config_contents = '[profile bar]\n' 'region = us-west-2\n' |
| 26 | self.environ['AWS_CONFIG_FILE'] = self.files.create_file( |
| 27 | 'myconfig', config_contents |
| 28 | ) |
| 29 | self.driver = create_clidriver() |
| 30 | self.entry_point = AWSCLIEntryPoint(self.driver) |
| 31 | |
| 32 | def tearDown(self): |
| 33 | super(TestArgsResolution, self).tearDown() |
nothing calls this directly
no test coverage detected