Coverage for ejpiaj/assertions : 79%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
def equals_assertion(value, params): return str(value) == str(params)
def notequals_assertion(value, params): return not equals_assertion(value, params)
def in_assertion(value, params):
def notin_assertion(value, params):
def empty_assertion(value):
def notempty_assertion(value):
def contains_assertion(value, params): return str(params) in str(value)
def notcontains_assertion(value, params): return not contains_assertion(value, params) |