// Package inttest holds the Postgres-backed integration tests for the backend. // // The tests are guarded by the `integration` build tag and run against a // throwaway postgres:17-alpine container started with testcontainers-go, so a // reachable Docker daemon is required. Run them with: // // go test -tags=integration ./backend/... // // They fail loudly when Docker is unavailable rather than skipping, per // docs/TESTING.md. This file carries no build tag so the package is non-empty // in the default (no-tag) build. package inttest