We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9045e6a commit 88598ffCopy full SHA for 88598ff
1 file changed
tests/test_cli.py
@@ -88,6 +88,8 @@ def test_unset():
88
assert stored_value == 'WORLD'
89
success, key_to_unset = dotenv.unset_key(dotenv_path, 'HELLO')
90
assert dotenv.get_key(dotenv_path, 'HELLO') is None
91
+ success, key_to_unset = dotenv.unset_key(dotenv_path, 'RANDOM')
92
+ assert success is None
93
sh.rm(dotenv_path)
94
95
assert success is None
0 commit comments