accounts unit tests
diff --git a/openstack/storage/v1/accounts/urls_test.go b/openstack/storage/v1/accounts/urls_test.go
new file mode 100644
index 0000000..f127a5e
--- /dev/null
+++ b/openstack/storage/v1/accounts/urls_test.go
@@ -0,0 +1,17 @@
+package accounts
+
+import (
+ "testing"
+
+ "github.com/rackspace/gophercloud"
+)
+
+func TestAccountURL(t *testing.T) {
+ client := gophercloud.ServiceClient{
+ Endpoint: "http://localhost:5000/v3/",
+ }
+ url := accountURL(&client)
+ if url != "http://localhost:5000/v3/" {
+ t.Errorf("Unexpected service URL generated: [%s]", url)
+ }
+}