aboutsummaryrefslogtreecommitdiffstats
path: root/tests/option_tests.py
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2018-01-03 12:38:50 -0500
committerBryn M. Reeves <bmr@redhat.com>2018-04-17 15:36:24 +0100
commit5d41100f9d289121467b436f124f91137bc7c621 (patch)
treeb80031f2f9c0ad3fb40f139cb41165352447c7f0 /tests/option_tests.py
parent333918cba972db00d524074491593a2b080a153c (diff)
downloadsos-5d41100f9d289121467b436f124f91137bc7c621.tar.gz
[Plugin] Make Plugin.policy an object instead of a function
Moves Plugin.policy to be an object for plugins instead of a function, making it easier to leverage the active policy within sos plugins. Resolves: #1179 Signed-off-by: Jake Hunsaker <jhunsake@redhat.com> Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
Diffstat (limited to 'tests/option_tests.py')
-rw-r--r--tests/option_tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/option_tests.py b/tests/option_tests.py
index e8a26e2d..a4267e2e 100644
--- a/tests/option_tests.py
+++ b/tests/option_tests.py
@@ -3,12 +3,15 @@
import unittest
from sos.plugins import Plugin
+from sos.policies import LinuxPolicy
+
class GlobalOptionTest(unittest.TestCase):
def setUp(self):
self.commons = {
'sysroot': '/',
+ 'policy': LinuxPolicy(),
'global_plugin_options': {
'test_option': 'foobar',
'baz': None,