Add test coverage for 'today_fmt' reference substitution #10980
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Type of change
Purpose
SOURCE_DATE_EPOCH
is set #10949 usingpytest
,coverage
anddiff-cover
, I noticed that one of the lines affected by the changeset that didn't have any test coverage is this code to substitute named references to 'today' in source documentation with atoday_fmt
-formatted date. This pull request offers basic test coverage for that part of the code.Detail
DefaultSubstitution
class is added as part of a chain of default transformers during app setup. It can substitute named references in a source document with configured text replacements, and has a special case to handle|today|
when it appears as a reference with no direct text substitute (but instead a date format substitute) is configured.SOURCE_DATE_EPOCH
withinutil.i18n.format_date
, although that wasn't the initial intent of this changesetRelates
SOURCE_DATE_EPOCH
is set #10949