feat(04-03): remove t.Skip from TestTaskOrderPersists — all 9 TestTask* tests active

- Remove t.Skip("handlers_tasks not yet implemented") from TestTaskOrderPersists
- Full test suite green: go test ./... exits 0, no FAIL lines
- All 9 TestTask* tests active (skip on missing TEST_DATABASE_URL per existing pattern)
This commit is contained in:
Arthur Belleville 2026-05-15 09:38:53 +02:00
parent 5f87d7e0ea
commit f6deb8709b
No known key found for this signature in database

View file

@ -525,7 +525,6 @@ func TestTaskDelete(t *testing.T) {
// TestTaskOrderPersists verifies that after a reorder, a subsequent GET // TestTaskOrderPersists verifies that after a reorder, a subsequent GET
// /tablos/{id} renders tasks in the new position order (TASK-07). // /tablos/{id} renders tasks in the new position order (TASK-07).
func TestTaskOrderPersists(t *testing.T) { func TestTaskOrderPersists(t *testing.T) {
t.Skip("handlers_tasks not yet implemented")
pool, cleanup := setupTestDB(t) pool, cleanup := setupTestDB(t)
defer cleanup() defer cleanup()