context based changes

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
remotes/origin/2.3
Nico Schottelius 12 years ago
parent 18c5e60ab1
commit 136ddc05b5
  1. 2
      cdist/emulator.py
  2. 2
      cdist/exec/remote.py
  3. 6
      cdist/test/code/__init__.py
  4. 1
      cdist/test/emulator/__init__.py
  5. 1
      cdist/test/explorer/__init__.py

2
cdist/emulator.py vendored

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
#
# This file is part of cdist.

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
#
# This file is part of cdist.
#

@ -53,7 +53,11 @@ class CodeTestCase(test.CdistTestCase):
self.remote_base_path = self.mkdtemp()
remote_exec = self.remote_exec
remote_copy = self.remote_copy
self.remote = remote.Remote(self.target_host, self.remote_base_path, remote_exec, remote_copy)
self.remote = remote.Remote(
target_host=self.target_host,
remote_exec=remote_exec,
remote_copy=remote_copy)
self.remote.base_path = self.remote_base_path
self.remote.create_files_dirs()
self.code = code.Code(self.target_host, self.local, self.remote)

@ -33,7 +33,6 @@ from cdist.exec import local
from cdist import emulator
from cdist import core
from cdist import config
import cdist.context
import os.path as op
my_dir = op.abspath(op.dirname(__file__))

@ -56,7 +56,6 @@ class ExplorerClassTestCase(test.CdistTestCase):
self.remote = remote.Remote(
self.target_host,
self.remote_base_path,
self.remote_exec,
self.remote_copy)
self.remote.create_files_dirs()

Loading…
Cancel
Save