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

Function test_diff_get_output_config

atomic-cli/src/commands/diff/tests.rs:778–789  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

776
777 #[test]
778 fn test_diff_get_output_config() {
779 let diff = Diff::new()
780 .with_context(5)
781 .with_no_color(true)
782 .with_stat(true);
783
784 let config = diff.get_output_config();
785
786 assert_eq!(config.context_lines, 5);
787 assert!(!config.color);
788 assert_eq!(config.format, DiffFormat::Stat);
789 }
790
791 // Helper Function Tests
792

Callers

nothing calls this directly

Calls 4

with_statMethod · 0.80
with_no_colorMethod · 0.80
get_output_configMethod · 0.80
with_contextMethod · 0.45

Tested by

no test coverage detected