summaryrefslogtreecommitdiffstats
path: root/testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-16 09:55:53 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-16 09:55:53 -0400
commit6de50a235ed21de987488a2890b13f029d1962b4 (patch)
treeee540c156370cb4dd00b1d54f4bdeb6e42fd47cc /testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py
parentad0798f9e7fe105fa1314daf0213d8d3d50bd2e1 (diff)
downloadbcfg2-6de50a235ed21de987488a2890b13f029d1962b4.tar.gz
bcfg2-6de50a235ed21de987488a2890b13f029d1962b4.tar.bz2
bcfg2-6de50a235ed21de987488a2890b13f029d1962b4.zip
made POSIX subtool tests inherit from base POSIX tool tests
Diffstat (limited to 'testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py')
-rw-r--r--testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py b/testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py
index f1746e34a..9d8130658 100644
--- a/testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py
+++ b/testsuite/Testlib/TestClient/TestTools/TestPOSIX/TestPermissions.py
@@ -4,13 +4,8 @@ import lxml.etree
from mock import Mock, MagicMock, patch
from Bcfg2.Client.Tools.POSIX.Permissions import *
from Test__init import get_posix_object
+from Testbase import TestPOSIXTool
from .....common import *
-def get_permissions_object(posix=None):
- if posix is None:
- posix = get_posix_object()
- return POSIXPermissions(posix.logger, posix.setup, posix.config)
-
-class TestPOSIXPermissions(Bcfg2TestCase):
- # nothing to test!
- pass
+class TestPOSIXPermissions(TestPOSIXTool):
+ test_obj = POSIXPermissions