> +package org.jclouds.openstack.marconi.v1.features;
> +
> +import org.jclouds.openstack.marconi.v1.internal.BaseMarconiApiLiveTest;
> +import org.testng.annotations.Test;
> +
> +import static org.testng.Assert.assertTrue;
> +
> +@Test(groups = "live", testName = "QueueApiLiveTest")
> +public class QueueApiLiveTest extends BaseMarconiApiLiveTest {
> +
> + public void create() throws Exception {
> + for (String zoneId : api.getConfiguredZones()) {
> + QueueApi queueApi = api.getQueueApiForZone(zoneId);
> + boolean success = queueApi.create("jclouds-test");
> +
> + assertTrue(success);
Add message? "Expected queue creation to succeed" or so?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/42/files#r7051067