Method: Mocha::ClassMethod#initialize
- Defined in:
- lib/mocha/class_method.rb
#initialize(stubbee, method) ⇒ ClassMethod
Returns a new instance of ClassMethod.
9 10 11 12 |
# File 'lib/mocha/class_method.rb', line 9 def initialize(stubbee, method) @stubbee = stubbee @method = RUBY_VERSION < '1.9' ? method.to_s : method.to_sym end |