11 lines
208 B
Python
11 lines
208 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from app.core.config import Settings
|
|
|
|
|
|
def test_settings_default_values():
|
|
settings = Settings()
|
|
assert settings.APP_NAME == "{{ cookiecutter.project_name }}"
|