feat: v4.3.0 - cross-day drag (blocks can move between day rows)
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 18:36:51 +01:00
parent f3e2ae2cda
commit 751ffe6f82
5 changed files with 81 additions and 23 deletions

View File

@@ -6,6 +6,7 @@ import pytest
from fastapi.testclient import TestClient
from app.main import app
from app.config import VERSION
@pytest.fixture
@@ -48,7 +49,7 @@ def test_health(client):
assert r.status_code == 200
data = r.json()
assert data["status"] == "ok"
assert data["version"] == "4.2.0"
assert data["version"] == VERSION
def test_root_returns_html(client):