func TestGetAccounts(t *testing.T) { th.SetupHTTP() defer th.TeardownHTTP() os.HandleGetAccountSuccessfully(t) options := &UpdateOpts{Metadata: map[string]string{"gophercloud-test": "accounts"}} res := Update(fake.ServiceClient(), options) th.CheckNoErr(t, res.Err) }
func TestGetAccounts(t *testing.T) { th.SetupHTTP() defer th.TeardownHTTP() os.HandleGetAccountSuccessfully(t) expected := map[string]string{"Foo": "bar"} actual, err := Get(fake.ServiceClient()).ExtractMetadata() th.CheckNoErr(t, err) th.CheckDeepEquals(t, expected, actual) }