Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1593)

Unified Diff: cmd/cmd_test.go

Issue 6184044: Newlines in command help messages are now consistent
Patch Set: Newlines in command help messages are now consistent Created 12 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cmd/cmd.go ('k') | cmd/util_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cmd/cmd_test.go
=== modified file 'cmd/cmd_test.go'
--- cmd/cmd_test.go 2012-05-02 07:44:07 +0000
+++ cmd/cmd_test.go 2012-05-03 12:15:46 +0000
@@ -30,6 +30,11 @@
f.StringVar(&ignored, "option", "", "option-doc")
help = full.Info().Help(f)
c.Assert(string(help), Equals, fullHelp)
+
+ optionInfo := full.Info()
+ optionInfo.Doc = ""
+ help = optionInfo.Help(f)
+ c.Assert(string(help), Equals, optionHelp)
}
var initErrorTests = []struct {
« no previous file with comments | « cmd/cmd.go ('k') | cmd/util_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b