> @@ -95,4 +100,76 @@ public void testDirectory() throws InterruptedException {
> public void testWithDetails() throws InterruptedException, IOException {
> throw new SkipException("not yet implemented");
> }
> +
> + @Override
> + public void containerExists() throws InterruptedException {
> + if(System.getProperty("os.name").contains("indows"))
> + throw new SkipException("not yet implemented");
> + else
Could you call a helper method:
```
private static void skipIfWindows() {
}
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/168/files#r6777672