package schedule import ( "testing" "time" ) func TestDailyJobRunID(t *testing.T) { date := time.Date(2026, 6, 27, 15, 30, 0, 0, time.Local) got := dailyJobRunID(TEDScraperJobName, date) want := "ted_scraper:2026-06-27" if got != want { t.Fatalf("dailyJobRunID() = %q, want %q", got, want) } }