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

Function test_revise_builder_chain

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

Source from the content-addressed store, hash-verified

948
949 #[test]
950 fn test_revise_builder_chain() {
951 let revise = Revise::new()
952 .with_reference("@~2")
953 .with_message("Updated")
954 .with_reword(false)
955 .with_dry_run(true);
956
957 assert_eq!(revise.reference, "@~2");
958 assert_eq!(revise.message, Some("Updated".to_string()));
959 assert!(!revise.reword);
960 assert!(revise.dry_run);
961 }
962
963 #[test]
964 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