Skip to content

Commit

Permalink
add plaintext provider test assset
Browse files Browse the repository at this point in the history
  • Loading branch information
krysopath committed Apr 19, 2019
1 parent 3dba61c commit 4038716
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions assets/secrets.plain
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# comment are a pain
K1=V1 # so painful

K2=V2
# omigod
6 changes: 2 additions & 4 deletions vaultify/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
__all__ = (
'VaultProvider',
'GPGProvider',
'OpenSSLProvider'
'OpenSSLProvider',
'PlainTextProvider'
)


Expand Down Expand Up @@ -150,9 +151,6 @@ class PlainTextProvider(Provider):
{'./assets/secrets.plain': {'K1': 'V1', 'K2': 'V2'}}
"""
def __init__(self):
"""
"""
logger.debug('GPGProvider initialised')

def get_secrets(self):
Expand Down

0 comments on commit 4038716

Please sign in to comment.