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

Method print_changes

atomic-cli/src/commands/agent/attest.rs:519–528  ·  view source on GitHub ↗

Print changes covered.

(&self, attest: &Attestation)

Source from the content-addressed store, hash-verified

517
518 /// Print changes covered.
519 fn print_changes(&self, attest: &Attestation) {
520 if attest.changes_covered.is_empty() {
521 return;
522 }
523
524 println!("Changes Covered ({}):", attest.change_count(),);
525 for change_hash in &attest.changes_covered {
526 println!(" {}", format_hash(change_hash, false));
527 }
528 }
529
530 /// Print coverage per view.
531 fn print_coverage(&self, repo: &Repository, attest: &Attestation) {

Callers 2

show_for_viewMethod · 0.80
show_detailMethod · 0.80

Calls 1

is_emptyMethod · 0.45

Tested by

no test coverage detected