Repository: jclouds Updated Branches: refs/heads/fix-jclouds-538 [created] 0e15ec16b
First attempt at fixing 538 by adding dummy override methods for TestNG Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/0e15ec16 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/0e15ec16 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/0e15ec16 Branch: refs/heads/fix-jclouds-538 Commit: 0e15ec16b7931161c83a62de77f446f1573b274c Parents: 5fabd87 Author: Andrew Phillips <[email protected]> Authored: Fri Apr 18 19:30:13 2014 -0400 Committer: Andrew Phillips <[email protected]> Committed: Fri Apr 18 19:30:42 2014 -0400 ---------------------------------------------------------------------- .../blobstore/integration/SwiftContainerLiveTest.java | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/0e15ec16/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java ---------------------------------------------------------------------- diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java index 14d2204..7296fa9 100644 --- a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java +++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java @@ -44,4 +44,15 @@ public class SwiftContainerLiveTest extends BaseContainerLiveTest { public void testPublicAccess() throws MalformedURLException, InterruptedException, IOException { super.testPublicAccess(); } + + @Test(dependsOnMethods = "testPublicAccess") + public void testPublicAccessInNonDefaultLocation() throws InterruptedException, MalformedURLException, IOException { + super.testPublicAccessInNonDefaultLocation(); + } + + @Test(dependsOnMethods = "testPublicAccess") + public void testPublicAccessInNonDefaultLocationWithBigBlob() throws InterruptedException, MalformedURLException, + IOException { + super.testPublicAccessInNonDefaultLocationWithBigBlob(); + } }
