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

Unified Diff: testing/checkers/bool_test.go

Issue 9738043: cmd/jujud: do not change password
Patch Set: cmd/jujud: do not change password Created 11 years, 9 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 | « testing/checkers/bool.go ('k') | testing/checkers/checker_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/checkers/bool_test.go
=== added file 'testing/checkers/bool_test.go'
--- testing/checkers/bool_test.go 1970-01-01 00:00:00 +0000
+++ testing/checkers/bool_test.go 2013-06-19 04:43:15 +0000
@@ -0,0 +1,35 @@
+// Copyright 2013 Canonical Ltd.
+// Licensed under the AGPLv3, see LICENCE file for details.
+
+package checkers_test
+
+import (
+ . "launchpad.net/gocheck"
+ . "launchpad.net/juju-core/testing/checkers"
+)
+
+type BoolSuite struct{}
+
+var _ = Suite(&BoolSuite{})
+
+func (s *BoolSuite) TestIsTrue(c *C) {
+ c.Assert(true, IsTrue)
+ c.Assert(false, Not(IsTrue))
+
+ result, msg := IsTrue.Check([]interface{}{false}, nil)
+ c.Assert(result, Equals, false)
+ c.Assert(msg, Equals, "")
+
+ result, msg = IsTrue.Check([]interface{}{"foo"}, nil)
+ c.Assert(result, Equals, false)
+ c.Check(msg, Equals, `expected bool:true, received string:"foo"`)
+
+ result, msg = IsTrue.Check([]interface{}{42}, nil)
+ c.Assert(result, Equals, false)
+ c.Assert(msg, Equals, `expected bool:true, received int:42`)
+}
+
+func (s *BoolSuite) TestIsFalse(c *C) {
+ c.Assert(false, IsFalse)
+ c.Assert(true, Not(IsFalse))
+}
« no previous file with comments | « testing/checkers/bool.go ('k') | testing/checkers/checker_test.go » ('j') | no next file with comments »

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