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

Function test_eq

atomic-core/src/record/workflow/options.rs:605–612  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

603
604 #[test]
605 fn test_eq() {
606 let opts1 = WorkflowOptions::new().with_prefix("src/");
607 let opts2 = WorkflowOptions::new().with_prefix("src/");
608 let opts3 = WorkflowOptions::new().with_prefix("tests/");
609
610 assert_eq!(opts1, opts2);
611 assert_ne!(opts1, opts3);
612 }
613}

Callers

nothing calls this directly

Calls 1

with_prefixMethod · 0.45

Tested by

no test coverage detected