mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
moved mandatory back to filters as it does not always return a boolean, it does an exception on failure
This commit is contained in:
parent
01708cc824
commit
f150fe2c23
2 changed files with 10 additions and 11 deletions
|
@ -79,14 +79,6 @@ def search(value, pattern='', ignorecase=False):
|
|||
''' Perform a `re.search` returning a boolean '''
|
||||
return regex(value, pattern, ignorecase, 'search')
|
||||
|
||||
def mandatory(a):
|
||||
from jinja2.runtime import Undefined
|
||||
|
||||
''' Make a variable mandatory '''
|
||||
if isinstance(a, Undefined):
|
||||
raise errors.AnsibleFilterError('Mandatory variable not defined.')
|
||||
return a
|
||||
|
||||
class TestModule(object):
|
||||
''' Ansible core jinja2 tests '''
|
||||
|
||||
|
@ -102,9 +94,6 @@ class TestModule(object):
|
|||
# skip testing
|
||||
'skipped' : skipped,
|
||||
|
||||
# variable existence
|
||||
'mandatory': mandatory,
|
||||
|
||||
# regex
|
||||
'match': match,
|
||||
'search': search,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue