Feature request: warn on failed arity

Hello.

Might be nice if the following warned:

class A
def go a, b
end
end

a = A.new
a.stub!(go) {

}

a.go # doesn’t have enough parameters, arity is wrong.
Might be useful at times.
Thanks much!
-roger-