added defined/undefined tests
This commit is contained in:
parent
60ef91aae7
commit
7f28bcacaa
1 changed files with 13 additions and 0 deletions
|
@ -84,6 +84,15 @@ def search(value, pattern='', ignorecase=False, multiline=False):
|
|||
''' Perform a `re.search` returning a boolean '''
|
||||
return regex(value, pattern, ignorecase, multiline, 'search')
|
||||
|
||||
def undefined(a):
|
||||
''' Test if a variable is undefined '''
|
||||
from jinja2.runtime import Undefined
|
||||
return isinstance(a, Undefined)
|
||||
|
||||
def defined(a):
|
||||
''' Test if a variable is defined '''
|
||||
return not undefined(a)
|
||||
|
||||
class TestModule(object):
|
||||
''' Ansible core jinja2 tests '''
|
||||
|
||||
|
@ -107,4 +116,8 @@ class TestModule(object):
|
|||
'match': match,
|
||||
'search': search,
|
||||
'regex': regex,
|
||||
|
||||
# variable testing
|
||||
'undefined': undefined,
|
||||
'defined': defined,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue