diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2014-07-16 12:57:24 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2014-07-16 12:57:24 -0700 |
commit | 81525fd93541b41d31b6da13df61a0494cc1e7f6 (patch) | |
tree | eb182b6bc0e29b41c3953ee84092e45e51b911e7 /tests/unittests/test_datasource/test_cloudsigma.py | |
parent | e11e7c2d1e908d99179f0382da4ac0b4d49bd7aa (diff) | |
download | vyos-cloud-init-81525fd93541b41d31b6da13df61a0494cc1e7f6.tar.gz vyos-cloud-init-81525fd93541b41d31b6da13df61a0494cc1e7f6.zip |
Fix a few tests that have been failing in python 2.6
A few of the current tests have been continually failing
in python 2.6 based systems, due to lack of unit test
functions that are now added to ensure we can run the
unit tests (and not have to ignore those failures) on
python 2.6
Diffstat (limited to 'tests/unittests/test_datasource/test_cloudsigma.py')
-rw-r--r-- | tests/unittests/test_datasource/test_cloudsigma.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unittests/test_datasource/test_cloudsigma.py b/tests/unittests/test_datasource/test_cloudsigma.py index f92e07b7..eadb3cb7 100644 --- a/tests/unittests/test_datasource/test_cloudsigma.py +++ b/tests/unittests/test_datasource/test_cloudsigma.py @@ -1,10 +1,11 @@ # coding: utf-8 import copy -from unittest import TestCase from cloudinit.cs_utils import Cepko from cloudinit.sources import DataSourceCloudSigma +from tests.unittests import helpers as test_helpers + SERVER_CONTEXT = { "cpu": 1000, @@ -36,7 +37,7 @@ class CepkoMock(Cepko): return self -class DataSourceCloudSigmaTest(TestCase): +class DataSourceCloudSigmaTest(test_helpers.TestCase): def setUp(self): self.datasource = DataSourceCloudSigma.DataSourceCloudSigma("", "", "") self.datasource.is_running_in_cloudsigma = lambda: True |