Skip uinimplemented tests and some cleanup

This commit is contained in:
Harshavardhana
2015-03-15 01:08:09 -07:00
parent 6990a64d01
commit 3f95c55067
4 changed files with 9 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ func (s *MySuite) TestBucketList(c *C) {
results, err := donut.ListBuckets()
c.Assert(len(results), Equals, 0)
buckets := make([]string, 0)
var buckets []string
for i := 0; i < 10; i++ {
bucket := "foo" + strconv.Itoa(i)
buckets = append(buckets, bucket)
@@ -83,7 +83,7 @@ func (s *MySuite) TestObjectList(c *C) {
results, err := donut.ListObjectsInBucket("foo", "")
c.Assert(len(results), Equals, 0)
objects := make([]string, 0)
var objects []string
for i := 0; i < 10; i++ {
object := "foo" + strconv.Itoa(i)
objects = append(objects, object)