Extend ConfigFileNotFoundError

Signed-off-by: Václav Valíček <valicek1994@gmail.com>
This commit is contained in:
2022-06-26 01:15:44 +02:00
parent 97054b4fcc
commit 7293289a1a
2 changed files with 8 additions and 6 deletions

View File

@@ -14,9 +14,9 @@ def test_return():
def test_str_single_arg():
x = ConfigFileNotFoundError("/tmp")
x = ConfigFileNotFoundError("/tmp/cfg.cfg")
s = x.__str__()
assert s == "ConfigFileNotFoundError('/tmp')"
assert s == "Config file does not exist: /tmp/cfg.cfg"
def test_return_empty():