Skip to content

Instantly share code, notes, and snippets.

@mag
Created March 22, 2010 15:40
Show Gist options
  • Save mag/340186 to your computer and use it in GitHub Desktop.
Save mag/340186 to your computer and use it in GitHub Desktop.
@post_bodies = []
stub.proxy(Net::HTTP).new do |new_net_http|
stub(new_net_http).request do |request|
if request.method.downcase.to_sym == :post
@post_bodies << request.body
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment