Skip to content

Commit

Permalink
add doc strings and adjust entry point in pyproject toml
Browse files Browse the repository at this point in the history
  • Loading branch information
thedoubl3j committed Sep 4, 2024
1 parent ed108dd commit af9404e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/credential_plugins_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ def test_hashivault_handle_auth_not_enough_args():


def test_aws_assumerole_with_accesssecret():
'''
Test that the aws_assumerole_backend function call returns a token given the access_key and secret_key.
'''
kwargs = {
'access_key': 'my_access_key',
'secret_key': 'my_secret_key',
Expand Down Expand Up @@ -166,6 +169,9 @@ def test_aws_assumerole_with_accesssecret():


def test_aws_assumerole_with_arnonly():
'''
Test backend function with only the role ARN provided.
'''
kwargs = {
'role_arn': 'the_arn',
'identifier': 'access_token',
Expand Down

0 comments on commit af9404e

Please sign in to comment.