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

Function test_revise_builder_chain

atomic-cli/src/commands/revise.rs:945–956  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

943
944 #[test]
945 fn test_revise_builder_chain() {
946 let revise = Revise::new()
947 .with_reference("@~2")
948 .with_message("Updated")
949 .with_reword(false)
950 .with_dry_run(true);
951
952 assert_eq!(revise.reference, "@~2");
953 assert_eq!(revise.message, Some("Updated".to_string()));
954 assert!(!revise.reword);
955 assert!(revise.dry_run);
956 }
957
958 #[test]
959 fn test_revise_parse_reference() {

Callers

nothing calls this directly

Calls 4

with_rewordMethod · 0.80
with_referenceMethod · 0.80
with_dry_runMethod · 0.45
with_messageMethod · 0.45

Tested by

no test coverage detected