1

我有下一个模块。

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

谢谢。

4

1 回答 1

1

您已经切换了 mocha 的内置 RSpec 模拟库。那有不同的API。尝试:

A::B.stubs(:method_b).returns('value')
于 2012-06-10T09:53:02.807 回答