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

Unified Diff: cmd/jujuc/server/juju-log_test.go

Issue 6584069: cmd/jujuc/server: juju-log: add -l (Closed)
Patch Set: cmd/jujuc/server: juju-log: add -l Created 12 years, 6 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/jujuc/server/juju-log.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cmd/jujuc/server/juju-log_test.go
=== modified file 'cmd/jujuc/server/juju-log_test.go'
--- cmd/jujuc/server/juju-log_test.go 2012-08-01 15:48:38 +0000
+++ cmd/jujuc/server/juju-log_test.go 2012-10-03 05:55:23 +0000
@@ -85,3 +85,17 @@
err = com.Init(dummyFlagSet(), nil)
c.Assert(err, ErrorMatches, "no message specified")
}
+
+func (s *JujuLogSuite) TestLogLevel(c *C) {
+ ctx := &server.HookContext{}
+ com, err := ctx.NewCommand("juju-log")
+ c.Assert(err, IsNil)
+ // missing log level argument
+ err = com.Init(dummyFlagSet(), []string{"-l"})
+ c.Assert(err, ErrorMatches, "flag needs an argument.*")
+ com, err = ctx.NewCommand("juju-log")
+ c.Assert(err, IsNil)
+ // valid log level
+ err = com.Init(dummyFlagSet(), []string{"-l", "FATAL"})
+ c.Assert(err, ErrorMatches, "no message specified")
+}
« no previous file with comments | « cmd/jujuc/server/juju-log.go ('k') | no next file » | no next file with comments »

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