# File lib/mocha/class_method.rb, line 9
    def initialize(stubbee, method)
      @stubbee, @original_method = stubbee, nil
      @method = RUBY_VERSION < '1.9' ? method.to_s : method.to_sym
    end