mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-09-09 07:30:59 -07:00
feat(elicitation): add CredentialsNotConfiguredError sentinel
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
def test_credentials_not_configured_error_exists():
|
||||
from unraid_mcp.core.exceptions import CredentialsNotConfiguredError
|
||||
|
||||
err = CredentialsNotConfiguredError()
|
||||
assert str(err) == "Unraid credentials are not configured."
|
||||
|
||||
|
||||
def test_credentials_not_configured_error_is_exception():
|
||||
from unraid_mcp.core.exceptions import CredentialsNotConfiguredError
|
||||
|
||||
assert issubclass(CredentialsNotConfiguredError, Exception)
|
||||
Reference in New Issue
Block a user