summaryrefslogtreecommitdiffstats
path: root/tests/tests.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-02-01 17:40:04 -0500
committerJim Meyering <jim@meyering.net>2007-02-01 17:40:04 -0500
commit4ce23db0492822de6ba8e8c445e202b72d805028 (patch)
treec45ab9340ffab259fb9a5b7a2893a1ce242a33e2 /tests/tests.py
parent7d280f93f627834c4361c8d3958edaed3d589e25 (diff)
downloadthird_party-cobbler-4ce23db0492822de6ba8e8c445e202b72d805028.tar.gz
third_party-cobbler-4ce23db0492822de6ba8e8c445e202b72d805028.tar.xz
third_party-cobbler-4ce23db0492822de6ba8e8c445e202b72d805028.zip
Work towards implementation of optional integrated "light" sync support, which is enabled by default in /var/lib/cobbler/settings.
Users of the API will need to use the with_copy=True and with_delete=True parameters to initiate this behavior. As mentioned in the previous commit, sync() still needs to be run at least once prior to any add commands using this feature.
Diffstat (limited to 'tests/tests.py')
-rw-r--r--tests/tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/tests.py b/tests/tests.py
index e4dc8a3..59c8796 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -261,13 +261,6 @@ class TestCheck(BootTest):
class TestSync(BootTest):
- def test_dry_run(self):
- # dry_run just *shows* what is done, it doesn't apply the config
- # the test here is mainly for coverage, we do not test
- # that dry run does not modify anything
- self.make_basic_config()
- self.assertTrue(self.api.sync(dryrun=True))
-
def test_real_run(self):
# syncing a real test run in an automated environment would
# break a valid cobbler configuration, so we're not going to