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 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 want to write some test cases for my web app, but stuck at
I have a class that I want to use in many test cases: require
I'm using VS 2010 Professional built-in test cases. I've got a class that has
I have a nunit class library containing test cases. I want to programmatically get
I need to write test cases for my application. I've chosen NUnit. Please let
I'm writing some test cases, and I've got a test case that is using
I have some test cases. The test cases rely on data which takes time
I am creating Junit test cases in Spring. private static BeanFactory servicefactory = null;
I have created 5 test cases in JUnit 4 and I was wondering is
Suppose I have several small test cases. Easy enough to setup and easy enough

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.