7 lines
157 B
Python
7 lines
157 B
Python
import secret_loader
|
|
|
|
|
|
def test_init():
|
|
loader = secret_loader.SecretLoader('TEST', hardcoded={'KEY': 'VALUE'})
|
|
assert loader.load('KEY') == 'VALUE'
|