Shuffle around the acceptance tests a little.
diff --git a/acceptance/openstack/identity/v3/endpoint_test.go b/acceptance/openstack/identity/v3/endpoint_test.go
new file mode 100644
index 0000000..c924ac6
--- /dev/null
+++ b/acceptance/openstack/identity/v3/endpoint_test.go
@@ -0,0 +1,20 @@
+// +build acceptance
+
+package v3
+
+import (
+	"testing"
+
+	endpoints3 "github.com/rackspace/gophercloud/openstack/identity/v3/endpoints"
+)
+
+func TestListEndpoints(t *testing.T) {
+	// Create a service client.
+	serviceClient := createAuthenticatedClient(t)
+
+	// Use the service to list all available endpoints.
+	_, err := endpoints3.List(serviceClient, endpoints3.ListOpts{})
+	if err != nil {
+		t.Errorf("Unexpected error while listing endpoints: %v", err)
+	}
+}