mirror of
https://github.com/ansible/ansible.git
synced 2025-11-30 23:16:08 +07:00
* See changelog fragment for most changes. * Defer early config warnings until display is functioning, eliminating related fallback display logic. * Added more type annotations and docstrings. * ansible-test - pylint sanity for deprecations improved. * Refactored inline legacy resolutions in PluginLoader. Co-authored-by: Matt Clay <matt@mystile.com>
16 lines
349 B
Python
16 lines
349 B
Python
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
|
|
def test_name_ok(value):
|
|
# test names include a unique hash value to prevent shadowing of other plugins
|
|
return bool(re.match(r'^ansible\.plugins\.test\.test_test_[0-9]+$', __name__))
|
|
|
|
|
|
class TestModule:
|
|
def tests(self):
|
|
return {
|
|
'test_name_ok': test_name_ok,
|
|
}
|