Skip to main content

test_stream_pattern_single_char

Function test_stream_pattern_single_char 

Source
pub async fn test_stream_pattern_single_char<F, S>(
    make_store: F,
) -> ContractTestResult
where F: Fn() -> S + Send + Sync + Clone + 'static, S: EventStore + EventReader + Send + Sync + 'static,
Expand description

Contract test: Glob ? matches exactly one character.

Per ADR-0047, ? matches a single arbitrary character. Pattern account-? must match account-1 but not account-12 (two trailing characters) and not order-1.