MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_context_should_continue

Function test_context_should_continue

atomic-core/src/crdt/apply/context.rs:1023–1029  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1021
1022 #[test]
1023 fn test_context_should_continue() {
1024 let mut context = ApplyContext::with_defaults();
1025 assert!(context.should_continue());
1026
1027 context.mark_failed("test");
1028 assert!(!context.should_continue());
1029 }
1030
1031 #[test]
1032 fn test_context_exceeds_operation_limit() {

Callers

nothing calls this directly

Calls 1

mark_failedMethod · 0.80

Tested by

no test coverage detected