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 8851813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T13:14:55+00:00 2026-06-14T13:14:55+00:00

How do you mock a push into a class array variable using Rspec? Here

  • 0

How do you mock a push into a class array variable using Rspec? Here is an over-simplified example:

class Foo
  attr_accessor :bar
  def initialize
    @bar = []
  end
end

def some_method(foo)
  foo.bar << "a"
end

Say I want to write a spec for some_method that “it should push a new value to bar”. How do I do that?

foo = Foo.new
foo.should_receive(WHAT GOES HERE???).with("a")
some_method(foo)
  • 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-14T13:14:55+00:00Added an answer on June 14, 2026 at 1:14 pm

    Why mock anything? You only need to mock something when it is a dependency that you are trying to isolate from what you are actually trying to test. In your case, you seem to be trying to verify that calling some_method results in adding an item to a property of an object you passed in. You can simply test it directly:

    foo = Foo.new
    some_method(foo)
    foo.bar.should == ["a"]
    
    foo2 = Foo.new
    foo2.bar = ["z", "q"]
    some_method(foo2)
    foo2.bar.should == ["z", "q", "a"]
    
    # TODO: Cover situation when foo.bar is nil since it is available as attr_accessor 
    # and can be set from outside of the instance
    

    * EDITED After Comments Below **

    foo = Foo.new
    bar = mock
    foo.should_receive(:bar).and_return bar
    bar.should_receive(:<<).with("a")
    some_method(foo)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to mock only the GetValue method of the following class, using Moq:
Is it possible to mock the Assembly class? If so, using what framework, and
I am trying to mock a class using Mockito and also using PowerMock. This
Mock class looks like this : struct MockClass { MOCK_METHOD0( foo, void () );
I am using a mock object in RhinoMocks to represent a class that makes
I have built a mock object using EasyMock, and I'm trying to have the
If I create a mock in my spring context file using Springockito as described
Is it possible to mock out File calls with rhino mock example: private ServerConnection
I am trying to Mock an object that is being passed into another object,
To mock a protected virtual (non-generic) method in Moq is easy: public class MyClass

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.