test aliases to enable gramatical consistancy

keeps backwards compat by not removing the previouslly non grammer matching states
and introduces new ones so user can decide which one he wants
(or keep both and still be inconsistent to annoy those that care)
This commit is contained in:
Brian Coca 2016-01-14 12:22:19 -05:00
parent abc82fee13
commit 94fa9c2a7a

View file

@ -89,14 +89,18 @@ class TestModule(object):
def tests(self):
return {
# failure testing
'failed' : failed,
'success' : success,
'failed' : failed,
'failure' : failed,
'success' : success,
'succeeded' : success,
# changed testing
'changed' : changed,
'change' : changed,
# skip testing
'skipped' : skipped,
'skip' : skipped,
# regex
'match': match,