> + for (Queue queue: queues) {
> + assertNotNull(queue.getName());
> + assertFalse(queue.getMetadata().isPresent());
> + }
> + }
> + }
> +
> + @Test(dependsOnMethods = { "listOnePageOfQueues" })
> + public void createMore() throws Exception {
> + for (String zoneId : api.getConfiguredZones()) {
> + QueueApi queueApi = api.getQueueApiForZone(zoneId);
> +
> + for (int i=6; i < 12; i++) {
> + boolean success = queueApi.create("jclouds-test-" + i);
> +
> + assertTrue(success);
Add message?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/56/files#r7881716