propers: add November's collect and antiphon text
Deploy / deploy (push) Successful in 44s

9 collects, 3 antiphons -- including backfilling the pre-existing All
Saints entry. Also updates two pre-existing tests whose shared date
(2025-11-30, Advent I Sunday) now correctly shows St. Andrew commemorated
alongside it, confirmed against the live reference engine.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-11 06:18:12 -04:00
parent 395b7dfc1f
commit 7cc6adfb55
13 changed files with 254 additions and 3 deletions
+7 -1
View File
@@ -27,7 +27,13 @@ describe('getDayLabel — ordinal temporal label', () => {
});
it("Advent's own anchor Sunday is already week 1, not a separate anchor-week case", () => {
expect(getDayLabel(resolveDay('2025-11-30'))).toBe('The 1st Sunday of Advent');
// 2025-11-30 is also St. Andrew's own day (Duplex II. classis) — since
// the November sanctoral pull, he's correctly commemorated alongside
// Advent I rather than simply absent (confirmed against the live
// reference engine, which shows the same pairing), so the label
// reflects both, feast name first, same pattern as Trinity Sunday's
// own St. Felix I case above.
expect(getDayLabel(resolveDay('2025-11-30'))).toBe('St. Andrew, Apostle — The 1st Sunday of Advent');
expect(getDayLabel(resolveDay('2025-12-01'))).toBe('Monday in the 1st week of Advent');
});