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

Function test_pull_with_dry_run

atomic-cli/src/commands/pull/command.rs:815–821  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

813 /// Test with_dry_run builder method.
814 #[test]
815 fn test_pull_with_dry_run() {
816 let pull = Pull::new().with_dry_run(true);
817 assert!(pull.dry_run);
818
819 let pull = Pull::new().with_dry_run(false);
820 assert!(!pull.dry_run);
821 }
822
823 /// Test with_all builder method.
824 #[test]

Callers

nothing calls this directly

Calls 1

with_dry_runMethod · 0.45

Tested by

no test coverage detected