We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5434430 commit 4aecebbCopy full SHA for 4aecebb
test/test_config.py
@@ -17,6 +17,13 @@ def test_load_config():
17
assert cfg.raw[key] == val
18
19
20
+def test_role_override():
21
+ role = 'arn:aws:iam::00000000000:role/myfunc_role'
22
+ cfg = config.Config(EX_CONFIG, role=role)
23
+
24
+ assert cfg.role is role
25
26
27
def test_set_publish():
28
cfg = config.Config(EX_CONFIG)
29
# Check that we default to false
0 commit comments