> @@ -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));
Always!? ;) Added an assert method to the class that checks all of the CDN
Container fields.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/85/files#r11129912