3777c2e93d
* Fix plugin names when loading all plugins. Add an integration test to verify plugin __package__ and __name__ are correct. * Make sure filter and test names are unique. * Remove __package__ test. On Python 2.x __package__ is not set, but it is on Python 3.x.
9 lines
242 B
Python
9 lines
242 B
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
from ansible.plugins.lookup import LookupBase
|
|
|
|
|
|
class LookupModule(LookupBase):
|
|
def run(self, terms, variables, **kwargs):
|
|
return [__name__]
|