我有下一个模块。
module A
module B
def self.method_b(value)
#code
end
end
end
和
module A
module C
def self.method_c(value)
A::B.method_b(value)
end
end
end
如何测试这些模块?如何创建存根 self.method_b?
spec_helper.rb
RSpec.configure do |config|
config.mock_with :mocha
end
谢谢。