summaryrefslogtreecommitdiff
path: root/tests/unittests/helpers.py
diff options
context:
space:
mode:
authorJuerg Haefliger <juergh@gmail.com>2013-06-25 08:57:27 +0200
committerJuerg Haefliger <juergh@gmail.com>2013-06-25 08:57:27 +0200
commita8e22f5707248671116b6cfea42608137e1c1873 (patch)
tree6e3cfb44df9471e473b0d3a8110b11b8224bfa98 /tests/unittests/helpers.py
parent99baf9641689cf67389f46f1cb8bb09451d6f5ae (diff)
downloadvyos-cloud-init-a8e22f5707248671116b6cfea42608137e1c1873.tar.gz
vyos-cloud-init-a8e22f5707248671116b6cfea42608137e1c1873.zip
Add unit tests for SLES handler
Diffstat (limited to 'tests/unittests/helpers.py')
-rw-r--r--tests/unittests/helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittests/helpers.py b/tests/unittests/helpers.py
index e020a3ec..c0da0983 100644
--- a/tests/unittests/helpers.py
+++ b/tests/unittests/helpers.py
@@ -146,7 +146,8 @@ class FilesystemMockingTestCase(ResourceUsingTestCase):
('chmod', 1),
('delete_dir_contents', 1),
('del_file', 1),
- ('sym_link', -1)],
+ ('sym_link', -1),
+ ('copy', -1)],
}
for (mod, funcs) in patch_funcs.items():
for (f, am) in funcs: