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

  • Home
  • SEARCH
  • 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 3787766
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:53:33+00:00 2026-05-19T11:53:33+00:00

In my test cases, I want to loop through a collection of objects (different

  • 0

In my test cases, I want to loop through a collection of objects (different objects, depending on the scenerio), and if the objects in the collection contain the property location_id I want to verify the id has a value of e.g. 10

All the objects in the collection will be of the same type, but not all collections will have the same type i.e. some may be a collection of users, or a collection or articles etc.

I need this for my rspec tests.

  • 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-05-19T11:53:34+00:00Added an answer on May 19, 2026 at 11:53 am

    Assuming that by “contain a property” means “responds to a getter method”:

    def test_for_value( collection, getter_method, value )
      # Only look deeper if the collection isn't empty
      # and the first element has the method
      if (o=collection.first) && o.respond_to?( getter_method )
        collection.find{ |o| o.send(getter_method)==value }
      end
    end
    
    Person = Struct.new( :name, :age )
    
    people = []
    p test_for_value( people, :age, 38 )
    #=> nil
    
    people << Person.new( "Gavin", 38 )
    people << Person.new( "Imogen", 5 )
    
    p test_for_value( people, :age, 38 )
    #=> #<struct Person name="Gavin", age=38>
    
    p test_for_value( people, :age, 5 )
    #=> #<struct Person name="Imogen", age=5>
    
    p test_for_value( people, :horns, true )
    #=> nil
    

    If instead you are talking about collections of hashes and you want to lookup the hash key:

    def test_for_value( collection, key, value )
      if (o=collection.first) && o.key?( key )
        collection.find{ |o| o[key]==value }
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write test cases for my application. I've chosen NUnit. Please let
I am writing a few test cases that depend on the database being available,
I have a unit-test that tests a variety of cases, like this: public void
Doing a very simple loop to display various data, for _test in @test ...
I have a class library I want to unit test using Microsofts unit test
I have built a couple of test cases as stand alone python classes using
I'm trying to write test cases for my web services in a way that
I have a group of test cases that all should have exactly the same
I have a Selenium test case that enters dates into a date selector made
The following test case fails in rhino mocks: [TestFixture] public class EnumeratorTest { [Test]

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.