()
| 137 | use crate::RemoteConfig; |
| 138 | |
| 139 | fn setup() { |
| 140 | let manifest_dir = env!("CARGO_MANIFEST_DIR"); |
| 141 | unsafe { |
| 142 | std::env::set_var( |
| 143 | "AWS_CONFIG_FILE", |
| 144 | format!("{manifest_dir}/test-data/aws_config"), |
| 145 | ); |
| 146 | std::env::set_var( |
| 147 | "AWS_SHARED_CREDENTIALS_FILE", |
| 148 | format!("{manifest_dir}/test-data/aws_credentials"), |
| 149 | ); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | /// Specify a profile which does not exist |
| 154 | /// Expectations: |
no outgoing calls
no test coverage detected