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

Function test_turn_changes_summary_multiple

atomic-agent/src/event.rs:1097–1106  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1095
1096 #[test]
1097 fn test_turn_changes_summary_multiple() {
1098 let changes = TurnChanges::new()
1099 .with_modified(vec![PathBuf::from("a"), PathBuf::from("b")])
1100 .with_added(vec![PathBuf::from("c")])
1101 .with_deleted(vec![PathBuf::from("d")]);
1102 assert_eq!(
1103 changes.summary(),
1104 "4 files changed (2 modified, 1 added, 1 deleted)"
1105 );
1106 }
1107
1108 #[test]
1109 fn test_turn_changes_summary_only_added() {

Callers

nothing calls this directly

Calls 3

with_deletedMethod · 0.80
with_addedMethod · 0.80
with_modifiedMethod · 0.80

Tested by

no test coverage detected