> @@ -43,6 +56,24 @@ public CloudFilesCDNApiLiveTest() {
> super();
> }
>
> + public void testEnable() throws Exception {
> + for (String regionId : regions) {
> + assertNotNull(api.cdnApiInRegion(regionId).enable(name));
> + }
> + }
> +
> + public void testEnableWithTTL() throws Exception {
> + for (String regionId : regions) {
> + assertNotNull(api.cdnApiInRegion(regionId).enable(name, 777777));
> + }
> + }
> +
> + public void testDisable() throws Exception {
> + for (String regionId : regions) {
> + assertNotNull(api.cdnApiInRegion(regionId).disable(name));
Any more specific assertions we can make in these three tests?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/85/files#r10955870