Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Created March 30, 2013 22:07
Show Gist options
  • Save jookyboi/5278560 to your computer and use it in GitHub Desktop.
Save jookyboi/5278560 to your computer and use it in GitHub Desktop.
RSpec stub chain with arguments.
@github_double.stub_chain(:gists, :all).and_return([])
@github_double.gists.should_receive(:all).with({:per_page=>100, :page=>1}).and_return(all_gists_page_1)
@github_double.gists.should_receive(:all).with({:per_page=>100, :page=>2}).and_return([])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment