mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Test other use-cases for PluginLoader's config
This commit is contained in:
@@ -75,7 +75,16 @@ class TestErrors(unittest.TestCase):
|
||||
#with patch('glob.glob', mock_glob):
|
||||
# pass
|
||||
|
||||
def test_plugin__config(self):
|
||||
def assertPluginLoaderConfigBecomes(self, arg, expected):
|
||||
pl = PluginLoader('test', '', arg, 'test_plugin')
|
||||
self.assertEqual(pl.config, expected)
|
||||
|
||||
def test_plugin__init_config_list(self):
|
||||
config = ['/one', '/two']
|
||||
pl = PluginLoader('test', '', config, 'test_plugin')
|
||||
self.assertEqual(pl.config, config)
|
||||
self.assertPluginLoaderConfigBecomes(config, config)
|
||||
|
||||
def test_plugin__init_config_str(self):
|
||||
self.assertPluginLoaderConfigBecomes('test', ['test'])
|
||||
|
||||
def test_plugin__init_config_none(self):
|
||||
self.assertPluginLoaderConfigBecomes(None, [])
|
||||
|
||||
Reference in New Issue
Block a user