> @@ -196,4 +190,11 @@ public void testNodeNames() {
>        TemplateOptions options = nodeNames(nodeNames);
>        assertTrue(options.getNodeNames().containsAll(nodeNames));
>     }
> +
> +   @Test
> +   public void testNetworks() {
> +      Set<String> networks = ImmutableSet.of("first-network", 
> "second-network");
> +      TemplateOptions options = networks(networks);
> +      assertTrue(options.getNetworks().containsAll(networks));

Stupid question, but is this what we're trying to test, or that the networks 
are _equal_? I.e. would it be OK if `options.getNetworks()` had **more** 
entries?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/246/files#r8711540

Reply via email to