diff options
Diffstat (limited to 'tests/option_tests.py')
-rw-r--r-- | tests/option_tests.py | 3 |
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, |