mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-18 20:59:41 +02:00
docs: Added Missing Refs to Default Household (#4450)
This commit is contained in:
parent
8b6c75877d
commit
05ac18f00b
4 changed files with 5 additions and 1 deletions
|
@ -9,6 +9,7 @@ from mealie.core.settings.settings import AppSettings
|
|||
|
||||
def test_non_default_settings(monkeypatch):
|
||||
monkeypatch.setenv("DEFAULT_GROUP", "Test Group")
|
||||
monkeypatch.setenv("DEFAULT_HOUSEHOLD", "Test Household")
|
||||
monkeypatch.setenv("API_PORT", "8000")
|
||||
monkeypatch.setenv("API_DOCS", "False")
|
||||
|
||||
|
@ -16,6 +17,7 @@ def test_non_default_settings(monkeypatch):
|
|||
app_settings = get_app_settings()
|
||||
|
||||
assert app_settings.DEFAULT_GROUP == "Test Group"
|
||||
assert app_settings.DEFAULT_HOUSEHOLD == "Test Household"
|
||||
assert app_settings.API_PORT == 8000
|
||||
assert app_settings.API_DOCS is False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue