I can initialize a buildpack into the platform as follows:
platform.Initialize(switchblade.Buildpack{
Name: "foo_buildpack",
URI: /tmp/foo-buildpack.zip,
})
I'm looking to find an API to delete this buildpack that can be used to clean up tests.
Currently, on the CF platform the foo buildpack remains on the platform after the tests.
Expectation
Something like:
platform.Delete(switchblade.Buildpack{
Name: "foo_buildpack",
})