No need for LB suffix actually :thought_balloon:
diff --git a/rackspace/lb/lb/requests_test.go b/rackspace/lb/lb/requests_test.go
index 220f11e..2ee81d3 100644
--- a/rackspace/lb/lb/requests_test.go
+++ b/rackspace/lb/lb/requests_test.go
@@ -116,7 +116,7 @@
 	th.AssertDeepEquals(t, expected, lb)
 }
 
-func TestBulkDeleteLBs(t *testing.T) {
+func TestBulkDelete(t *testing.T) {
 	th.SetupHTTP()
 	defer th.TeardownHTTP()
 
@@ -128,7 +128,7 @@
 	th.AssertNoErr(t, err)
 }
 
-func TestDeleteLB(t *testing.T) {
+func TestDelete(t *testing.T) {
 	th.SetupHTTP()
 	defer th.TeardownHTTP()
 
@@ -139,3 +139,7 @@
 	err := Delete(client.ServiceClient(), id).ExtractErr()
 	th.AssertNoErr(t, err)
 }
+
+func TestGet(t *testing.T) {
+
+}