Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Capybara を使用した受け入れ仕様があります。ただし、1 つのヘルパー メソッド (構成を提供し、さまざまな構成をテストしたい) をスタブ化したいと考えています。それを達成する方法は?
代わりに構成をスタブできますか? 受け入れテストでコードをスタブするのは非常に悪い考えです。
これが最善の方法であると主張する場合は、次の方法を試すことができます。
ActionView::Base.any_instance.stub(:the_helper_method) { "other implementation" }