Move all server and controller packages into top-level

This commit is contained in:
Harshavardhana
2015-09-19 00:52:01 -07:00
parent d808c3685d
commit d54488f144
80 changed files with 20431 additions and 258 deletions

View File

@@ -23,7 +23,11 @@ import (
. "gopkg.in/check.v1"
)
func (s *TestSuite) TestVersion(c *C) {
type VersionSuite struct{}
var _ = Suite(&VersionSuite{})
func (s *VersionSuite) TestVersion(c *C) {
_, err := time.Parse(minioVersion, http.TimeFormat)
c.Assert(err, NotNil)
}