initial os-quota-set api; GET unit test
diff --git a/openstack/compute/v2/extensions/quota/requests_test.go b/openstack/compute/v2/extensions/quota/requests_test.go
new file mode 100644
index 0000000..ec55cc7
--- /dev/null
+++ b/openstack/compute/v2/extensions/quota/requests_test.go
@@ -0,0 +1,16 @@
+package quotas
+
+import (
+	th "github.com/rackspace/gophercloud/testhelper"
+	"github.com/rackspace/gophercloud/testhelper/client"
+	"testing"
+)
+
+func TestGet(t *testing.T) {
+	th.SetupHTTP()
+	defer th.TeardownHTTP()
+	HandleGetSuccessfully(t)
+	actual, err := Get(client.ServiceClient(), FirstTenantID).Extract()
+	th.AssertNoErr(t, err)
+	th.CheckDeepEquals(t, &FirstQuota, actual)
+}