Source code for infrahouse_toolkit.aws.tests.config.test_aws_home
from unittest import mock
from infrahouse_toolkit.aws.config import AWSConfig
[docs]def test_aws_home():
with mock.patch("infrahouse_toolkit.aws.config.osp.expanduser", return_value="/home/foo"):
aws = AWSConfig()
assert aws.aws_home == "/home/foo/.aws"