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)pull/4420/head
parent
abc82fee13
commit
94fa9c2a7a
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue