6 lines
114 B
Python
6 lines
114 B
Python
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
def test_we_are_using_the_correct_envpath():
|
||
|
|
assert os.environ.get("ENV_PATH", "") == ".env.test"
|