remove the integration test for dns

This commit is contained in:
Anthony Shaw 2017-04-26 17:02:48 +10:00
parent f2800da985
commit 48d2575f77
No known key found for this signature in database
GPG Key ID: AB4A19AE1CE85744

View File

@ -1,21 +0,0 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from tests.support.case import ModuleCase
class LibcloudDNSTest(ModuleCase):
'''
Validate the libcloud_dns module
'''
def test_list_record_types(self):
'''
libcloud_dns.list_record_types
'''
# Simple profile (no special kwargs)
self.assertTrue('SPF' in self.run_function('libcloud_dns.list_record_types', ['profile_test1']))
# Complex profile (special kwargs)
accepted_record_types = self.run_function('libcloud_dns.list_record_types', ['profile_test2'])
self.assertTrue(isinstance(accepted_record_types, list) and 'SRV' in accepted_record_types)