rax bulk operations; results update [not working]
diff --git a/acceptance/rackspace/objectstorage/v1/bulk_test.go b/acceptance/rackspace/objectstorage/v1/bulk_test.go
new file mode 100644
index 0000000..fac3810
--- /dev/null
+++ b/acceptance/rackspace/objectstorage/v1/bulk_test.go
@@ -0,0 +1,20 @@
+// +build acceptance rackspace objectstorage v1
+
+package v1
+
+import (
+  "fmt"
+  "testing"
+
+ "github.com/rackspace/gophercloud/rackspace/objectstorage/v1/bulk"
+  th "github.com/rackspace/gophercloud/testhelper"
+)
+
+func TestBulk(t *testing.T){
+  c, err := createClient(t, false)
+  th.AssertNoErr(t, err)
+
+  options := &bulk.DeleteOpts{"container/object1"}
+  res := bulk.Delete(c, options)
+  fmt.Printf("res: %+v\n", res)
+}