次のモジュールがあります。
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
ありがとう。