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

Function long_about_is_stripped

atomic-cli/src/main.rs:1116–1127  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1114 /// `# Examples` markdown that derives from a command's doc comment.
1115 #[test]
1116 fn long_about_is_stripped() {
1117 let tree = apply_agent_help(Cli::command());
1118 let mut intent = tree
1119 .find_subcommand("intent")
1120 .expect("intent command present")
1121 .clone();
1122 let help = intent.render_help().to_string();
1123 assert!(
1124 !help.contains("# Examples"),
1125 "long_about markdown must not appear in help: {help}"
1126 );
1127 }
1128}

Callers

nothing calls this directly

Calls 3

apply_agent_helpFunction · 0.85
commandFunction · 0.85
cloneMethod · 0.45

Tested by

no test coverage detected