Add November sanctoral content (5 saints/feasts)
Deploy / deploy (push) Successful in 1m6s

St. Charles Borromeo (11-04), the Octave Day of All Saints (11-08,
own real Cyprian/Augustine Nocturn 2-3 content, collect reused from
All Saints via cross-id propers), St. Albert the Great (11-15),
St. Gertrude (11-16), St. Felix of Valois (11-20). All Souls' Day
(11-02) deliberately skipped -- a Requiem office, not a normal
saint's office, a genuine mechanism gap.

Several new fixed-date Duplex+ saints displaced existing test
fixtures that had assumed particular dates were clean/ferial/
plain-Sunday: prime.test.ts's MONDAY constant, weekday.test.ts's
clean-Sunday case, and day-label.test.ts's post-Epiphany-overflow
and open-octave-day cases. Fixed by finding genuinely clean
alternate dates/years, never by weakening assertions.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-17 17:49:06 -04:00
parent 0955f7cbd1
commit f7af1e7cbf
18 changed files with 971 additions and 30 deletions
+10 -10
View File
@@ -2,16 +2,16 @@ import { describe, expect, it } from 'vitest';
import { resolveOrdo } from '../../src/hours';
import { getPsalm } from '../../src/psalter';
// 2026-11-16 is a Monday, and (as of the pre-1955 sanctoral pull reaching
// October, with November/December still unpulled) still ordinary/ferial —
// the Monastic 1617 distribution gives Monday three whole psalms (1, 2,
// 6), all fully verified since the whole Psalter got bulk-pulled from
// Divinum Officium's own Psalmorum text (2026-08). Already had to move
// twice (first from a June Monday, then from an October Monday that got
// real sanctoral content — Ss. Placid and Companions, see
// data/calendar/saints/ss-placid-and-companions.yml) — if November's own
// pull lands here too, it'll need to move again.
const MONDAY = '2026-11-16';
// 2026-09-07 is a Monday, plain ferial (post-Pentecost 15's own week,
// no sanctoral entry, no commemoration) — the Monastic 1617 distribution
// gives Monday three whole psalms (1, 2, 6), all fully verified since the
// whole Psalter got bulk-pulled from Divinum Officium's own Psalmorum
// text (2026-08). Already had to move three times now (first from a June
// Monday, then an October Monday that got real sanctoral content — Ss.
// Placid and Companions — then 2026-11-16 itself, which the November
// sanctoral pull claimed for St. Gertrude) — pick with care if it needs
// to move again.
const MONDAY = '2026-09-07';
const SUNDAY = '2026-08-09';
describe('resolveOrdo("prime", ...)', () => {