summaryrefslogtreecommitdiff
path: root/tests/unittests/test_distros/test_is_excluded.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/test_distros/test_is_excluded.py')
-rw-r--r--tests/unittests/test_distros/test_is_excluded.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/unittests/test_distros/test_is_excluded.py b/tests/unittests/test_distros/test_is_excluded.py
deleted file mode 100644
index 53a4445c..00000000
--- a/tests/unittests/test_distros/test_is_excluded.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from cloudinit.distros import gentoo
-import unittest
-
-
-class TestIsExcluded(unittest.TestCase):
-
- def setUp(self):
- self.distro = gentoo.Distro('gentoo', {}, None)
- self.distro.exclude_modules = ['test-module']
-
- def test_is_excluded_success(self):
- self.assertEqual(self.distro.is_excluded('test-module'), True)
-
- def test_is_excluded_fail(self):
- self.assertEqual(self.distro.is_excluded('missing'), None)