rackspace abandon stack op and unit test
diff --git a/rackspace/orchestration/v1/stacks/delegate_test.go b/rackspace/orchestration/v1/stacks/delegate_test.go
index eb4e171..d15de30 100644
--- a/rackspace/orchestration/v1/stacks/delegate_test.go
+++ b/rackspace/orchestration/v1/stacks/delegate_test.go
@@ -442,3 +442,18 @@
expected := os.PreviewExpected
th.AssertDeepEquals(t, expected, actual)
}
+
+func TestAbandonStack(t *testing.T) {
+ th.SetupHTTP()
+ defer th.TeardownHTTP()
+ os.HandleAbandonSuccessfully(t)
+
+ //actual, err := Abandon(fake.ServiceClient(), "postman_stack", "16ef0584-4458-41eb-87c8-0dc8d5f66c87").Extract()
+ //th.AssertNoErr(t, err)
+ res := Abandon(fake.ServiceClient(), "postman_stack", "16ef0584-4458-41eb-87c8-0dc8d5f66c87") //.Extract()
+ th.AssertNoErr(t, res.Err)
+ t.Logf("actual: %+v", res)
+
+ //expected := os.AbandonExpected
+ //th.AssertDeepEquals(t, expected, actual)
+}