Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8947501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:46:36+00:00 2026-06-15T12:46:36+00:00

Yes, I know it is best to use webmock, but I would like to

  • 0

Yes, I know it is best to use webmock, but I would like to know how to mock this method in RSpec:

def method_to_test
  url = URI.parse uri
  req = Net::HTTP::Post.new url.path
  res = Net::HTTP.start(url.host, url.port) do |http|
    http.request req, foo: 1
  end
  res
end

Here is the RSpec:

let( :uri ) { 'http://example.com' }

specify 'HTTP call' do
  http = mock :http
  Net::HTTP.stub!(:start).and_yield http
  http.should_receive(:request).with(Net::HTTP::Post.new(uri), foo: 1)
    .and_return 202
  method_to_test.should == 202
end

The test fails because with seems to be trying to match the NET::HTTP::Post object:

RSpec::Mocks::MockExpectationError: (Mock :http).request(#<Net::HTTP::Post POST>, {:foo=>"1"})
expected: 1 time
received: 0 times

Mock :http received :request with unexpected arguments
     expected: (#<Net::HTTP::Post POST>, {:foo=>"1"})
          got: (#<Net::HTTP::Post POST>, {:foo=>"1"})

How to match properly?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T12:46:38+00:00Added an answer on June 15, 2026 at 12:46 pm

    If you don’t care about the exact instance, you could use the an_instance_of method:

    http.should_receive(:request).with(an_instance_of(Net::HTTP::Post), foo: 1)
    .and_return 202
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Yes I know, this title isn't really helpfull but this is the exact problem.
Yes, I know there is MonoDevelop . But what if I want to use
Yes, I know, the old question of the best web framework ... but let
Yes, I know the wording is hard to understand, but this is something that
Yes, this might sound like a newbie question but there's a TWIST! ( And
(Yes I know I can call Java code from Scala; but that is pointless;
I have the following code (Yes I know it's quite long winded, but I
I want to develop a web application, like an online scheduler. (Yes I know
Many functions in my code use this structure: options = {param1: yes, param2 :
I use this simple method to retrieve a Query String from a Page a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.