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

Function test_add_files_touched

atomic-agent/src/turn/session.rs:780–785  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

778
779 #[test]
780 fn test_add_files_touched() {
781 let mut s = make_session();
782 s.add_files_touched(&["a.rs".to_string(), "b.rs".to_string()]);
783 assert_eq!(s.files_touched, vec!["a.rs", "b.rs"]);
784 assert_eq!(s.files_touched_count(), 2);
785 }
786
787 #[test]
788 fn test_add_files_touched_dedup() {

Callers

nothing calls this directly

Calls 2

add_files_touchedMethod · 0.80
make_sessionFunction · 0.70

Tested by

no test coverage detected