Jon Perritt | 0ce24ad | 2014-10-20 21:59:45 -0500 | [diff] [blame^] | 1 | // +build acceptance rackspace objectstorage v1 |
2 | |||||
3 | package v1 | ||||
4 | |||||
5 | import ( | ||||
6 | "fmt" | ||||
7 | "testing" | ||||
8 | |||||
9 | "github.com/rackspace/gophercloud/rackspace/objectstorage/v1/bulk" | ||||
10 | th "github.com/rackspace/gophercloud/testhelper" | ||||
11 | ) | ||||
12 | |||||
13 | func TestBulk(t *testing.T){ | ||||
14 | c, err := createClient(t, false) | ||||
15 | th.AssertNoErr(t, err) | ||||
16 | |||||
17 | options := &bulk.DeleteOpts{"container/object1"} | ||||
18 | res := bulk.Delete(c, options) | ||||
19 | fmt.Printf("res: %+v\n", res) | ||||
20 | } |