> +
> +import com.google.common.base.Optional;
> +import com.google.common.collect.Iterables;
> +import org.jclouds.openstack.nova.v2_0.domain.Server;
> +import org.jclouds.openstack.nova.v2_0.domain.ServerCreated;
> +import org.jclouds.openstack.nova.v2_0.features.ServerApi;
> +import org.jclouds.openstack.nova.v2_0.internal.BaseNovaApiLiveTest;
> +import org.jclouds.openstack.nova.v2_0.options.CreateServerOptions;
> +import org.jclouds.openstack.nova.v2_0.options.RebuildServerOptions;
> +import org.testng.annotations.BeforeGroups;
> +import org.testng.annotations.Test;
> +
> +import static org.testng.Assert.assertEquals;
> +
> +@Test(groups = "live", testName = "CreateServerApiLiveTest", singleThreaded
> = true)
> +public class CreateServerApiLiveTest extends BaseNovaApiLiveTest {
This PR is all about the additional options for a rebuild right?
rebuild is part of the org.jclouds.openstack.nova.v2_0.features.ServerApi.
There is already a class for those live tests. Just add any live tests to
org.jclouds.openstack.nova.v2_0.features.ServerApiLiveTest.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/181/files#r6984231