Lines Matching refs:args
59 # check that obj.method(*args) returns result
60 def checkequal(self, result, obj, methodname, *args, **kwargs):
63 args = self.fixtype(args)
65 realresult = getattr(obj, methodname)(*args, **kwargs)
80 realresult = getattr(obj, methodname)(*args)
83 # check that obj.method(*args) raises exc
84 def checkraises(self, exc, obj, methodname, *args, expected_msg=None):
86 args = self.fixtype(args)
88 getattr(obj, methodname)(*args)
93 # call obj.method(*args) without any checks
94 def checkcall(self, obj, methodname, *args):
96 args = self.fixtype(args)
97 getattr(obj, methodname)(*args)
387 # check keyword args
453 # with keyword args
528 # with keyword args