15 lines
480 B
Python
15 lines
480 B
Python
import pytest
|
|
from pydantic import ValidationError
|
|
|
|
from app.community_scheduler import configured_sources
|
|
from app.config import Settings
|
|
|
|
|
|
def test_all_authorized_sources_are_scheduled() -> None:
|
|
assert set(configured_sources()) == {"rf4db", "rf4stat-fishing", "rf4stat-post", "rf4map", "rf4posts-spot"}
|
|
|
|
|
|
def test_community_interval_cannot_be_less_than_30_minutes() -> None:
|
|
with pytest.raises(ValidationError):
|
|
Settings(community_import_interval_seconds=1799)
|