mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
412 B
Python
17 lines
412 B
Python
5 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
import re
|
||
|
|
||
|
|
||
|
def test_name_ok(value):
|
||
|
# test names are prefixed with a unique hash value to prevent shadowing of other plugins
|
||
|
return bool(re.match(r'^ansible\.plugins\.test\.[0-9]+_test_test$', __name__))
|
||
|
|
||
|
|
||
|
class TestModule:
|
||
|
def tests(self):
|
||
|
return {
|
||
|
'test_name_ok': test_name_ok,
|
||
|
}
|