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:
parent
abc82fee13
commit
94fa9c2a7a
1 changed files with 6 additions and 2 deletions
|
@ -89,14 +89,18 @@ class TestModule(object):
|
||||||
def tests(self):
|
def tests(self):
|
||||||
return {
|
return {
|
||||||
# failure testing
|
# failure testing
|
||||||
'failed' : failed,
|
'failed' : failed,
|
||||||
'success' : success,
|
'failure' : failed,
|
||||||
|
'success' : success,
|
||||||
|
'succeeded' : success,
|
||||||
|
|
||||||
# changed testing
|
# changed testing
|
||||||
'changed' : changed,
|
'changed' : changed,
|
||||||
|
'change' : changed,
|
||||||
|
|
||||||
# skip testing
|
# skip testing
|
||||||
'skipped' : skipped,
|
'skipped' : skipped,
|
||||||
|
'skip' : skipped,
|
||||||
|
|
||||||
# regex
|
# regex
|
||||||
'match': match,
|
'match': match,
|
||||||
|
|
Loading…
Reference in a new issue