Conformance Examples 0.1.0 — Transforms: transform-at_least¶
at_least-raises-to-minimum¶
at_least returns the argument when the input is below it via {{ n | at_least: 5 }}.
Template
Context
Output
at_least-keeps-larger-input¶
at_least returns the input when it is already at or above the minimum.
Template
Context
Output
at_least-fractional-minimum¶
at_least returns a fractional minimum when it is the larger value.
Template
Context
Output
at_least-non-numeric-input-is-null¶
A non-numeric input is a soft failure, so at_least yields null.
Template
Context
Output
at_least-non-numeric-argument-is-null¶
A non-numeric argument is a soft failure, so at_least yields null.
Template
Context
Output
at_least-datetime-keeps-later-argument¶
With DateTime input and a DateTime argument, at_least returns the later instant.
Template
Context
Output
at_least-datetime-keeps-later-input¶
With DateTime input and a DateTime argument, at_least returns the input when it is the later instant.
Template
Context
Output
at_least-datetime-non-datetime-argument-is-null¶
DateTime input with a non-DateTime argument is a soft failure, so at_least yields null.
Template
Context
Output
Source fixture: transforms/transform-at_least.json