test for test_transfer_code_remote

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-13 14:57:09 +02:00
parent 01ab81a446
commit 5055afe0c0
1 changed files with 7 additions and 0 deletions

View File

@ -63,6 +63,7 @@ class ExplorerClassTestCase(unittest.TestCase):
self.cdist_type = core.Type(self.local.type_path, '__dump_environment')
self.cdist_object = core.Object(self.cdist_type, self.local.object_path, 'whatever')
self.cdist_object.create()
def tearDown(self):
shutil.rmtree(self.out_path)
@ -98,6 +99,12 @@ class ExplorerClassTestCase(unittest.TestCase):
self.assertEqual(output_dict['__object_id'], self.cdist_object.object_id)
self.assertEqual(output_dict['__object_fq'], self.cdist_object.path)
def test_transfer_code_remote(self):
self.cdist_object.code_remote = self.code.run_gencode_remote(self.cdist_object)
self.code.transfer_code_remote(self.cdist_object)
destination = os.path.join(self.remote.object_path, self.cdist_object.code_remote_path)
self.assertTrue(os.path.isfile(destination))
'''