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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:20:56+00:00 2026-06-13T10:20:56+00:00

Does anyone know of a nice dry way to run the same group of

  • 0

Does anyone know of a nice dry way to run the same group of tests in different contexts. Here is a ridiculous example of wanting to run the same tests with two different setups. I don’t want to have to repeat the same tests just so I can have different setups.

context 'cat' do
  setup do
    @object = cat
    ....
  end

  should 'walk' do
    assert @object.walk?
    ...
  end

  should 'run' do
    assert @object.run?
    ...
  end
end

context 'dog' do
  setup do
    @object = dog
    ....
  end

  should 'walk' do
    assert @object.walk?
    ...
  end

  should 'run' do
    assert @object.run?
    ...
  end
end
  • 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-13T10:20:57+00:00Added an answer on June 13, 2026 at 10:20 am

    I’ve done it with merge_block before. Define a class method in your test that returns a Proc of your shoulds and then merge it in where appropriate.

    def self.walk_and_run
      Proc.new do
        should 'walk' do
          assert @object.walk?
        end
        should 'run' do
          assert @object.run?
        end
      end
    end
    
    context 'cat' do
      setup do
        @object = cat
      end
      merge_block(&walk_and_run)
    end
    
    context 'dog' do
      setup do
        @object = dog
      end
      merge_block(&walk_and_run)
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know if there is a way to generate different code in the
Does anyone know of a nice way to: produce XSD documents from an SQL
Does anyone know a way to produce a nice publication quality LaTeX table from
Does anyone know of a way to contain a nonbreaking space in an html
Does anyone know of a good way to assert if a NameValueCollection is equivalent?
Does anyone know a better (shorter/more elegant) way than simply writing a loop and
Does anyone know of a way to control the font size/color/weight of the row
Does anyone know of a neat way in java or any packages that will
Does anyone know of a good overview of the different C# collection types? I
Does anyone know of a way to add additional attribute types to the @property

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.