Index: juju/conn_test.go |
=== modified file 'juju/conn_test.go' |
--- juju/conn_test.go 2012-09-06 03:24:11 +0000 |
+++ juju/conn_test.go 2012-09-20 09:03:53 +0000 |
@@ -130,20 +130,3 @@ |
c.Assert(err, IsNil) |
c.Assert(cfg.UnknownAttrs()["secret"], Equals, "pork") |
} |
- |
-func (*ConnSuite) TestValidRegexps(c *C) { |
- assertService := func(s string, expect bool) { |
- c.Assert(juju.ValidService.MatchString(s), Equals, expect) |
- c.Assert(juju.ValidUnit.MatchString(s+"/0"), Equals, expect) |
- c.Assert(juju.ValidUnit.MatchString(s+"/99"), Equals, expect) |
- c.Assert(juju.ValidUnit.MatchString(s+"/-1"), Equals, false) |
- c.Assert(juju.ValidUnit.MatchString(s+"/blah"), Equals, false) |
- } |
- assertService("", false) |
- assertService("33", false) |
- assertService("wordpress", true) |
- assertService("w0rd-pre55", true) |
- assertService("foo2", true) |
- assertService("foo-2", false) |
- assertService("foo-2foo", true) |
-} |