13

我正在尝试测试在方法调用链中是否有一个方法获取特定参数。例如,在下面的代码中,MyModel 必须接收方法的参数 0 offset。不幸的是,下面的代码不起作用。似乎无法混合 should_receive 和 stub_chain。我怎么能解决这个问题?我正在使用 RSpec 2。

MyModel.should_receive(:offset).with(0).stub_chain(:tag_counts, :offset, :limit, :order).and_return([]) # does not work!

我正在尝试测试的代码:

tags = taggable.tag_counts.offset(page-1).limit(per_page).where(*where_clause).order("count DESC")

更新

我还在 RSpec Google Group 上发布了这个问题,David(RSpec 的创建者)回答了这个问题(感谢 David):http ://groups.google.com/group/rspec/browse_thread/thread/6b8394836d2390b0?hl=en

4

1 回答 1

8

这是我现在在我的一个规范中所做的一个例子。这有点不方便(因为很多行),但它有效:

SearchPaginationModel.stub(:tag_counts) { SearchPaginationModel }
SearchPaginationModel.should_receive(:offset).with(0) { SearchPaginationModel }
SearchPaginationModel.stub_chain(:limit, :where, :order) { [] }
SearchPaginationModel.stub_chain(:tag_counts, :where, :count).and_return(1)
SearchPaginationModel.search_tags(:page => "1")

例如,测试SearchPaginationModel.tag_counts.offset(0).limit(X).where(X).order(X)设置为offset0。

于 2011-03-13T20:15:03.747 回答