class RSpec::HashWithDeprecationNotice
def []=(k,v)
def []=(k,v) RSpec.deprecate(@method, @alternate_method) super(k,v) end
def initialize(method, alternate_method=nil)
def initialize(method, alternate_method=nil) @method, @alternate_method = method, alternate_method end