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 的验收规范。但是,我想删除一种辅助方法(它提供配置并且我想测试不同的配置)。如何实现?
您是否能够改为存根配置?在验收测试中存根代码是一个非常糟糕的主意。
如果您坚持这是最好的方法,您可以尝试:
ActionView::Base.any_instance.stub(:the_helper_method) { "other implementation" }