No commit activity in last 3 years
No release in over 3 years
Simple parameterized testing with RSpec (a.k.a table tests)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.0
~> 0.5
~> 13.0
~> 3.8

Runtime

~> 3.0
 Project Readme

RSpec::WithParams

Gem Version CircleCI

Simple parameterized testing (a.k.a table tests) with RSpec.

RSpec.describe "my complex business logic" do
  extend RSpec::WithParams::DSL

  with_params(
    [:today,        :schedule,    :expected_date],
    ["2019-06-05",  "weekly",     "2019-06-13"],
    ["2019-06-05",  "bi-weekly",  "2019-06-20"],
    ["2019-06-05",  "monthly",    "2019-07-13"],
  ) do
    it "determines the next appointment date" do
      result = NextAppointmentCalculator.new.process(today, schedule)
      expect(result).to eq expected_date
    end
  end
end

Output (with --format documentation):

my complex business logic
  given today -> "2019-06-05", schedule -> "weekly", expected_date -> "2019-06-13"
    determines the next appointment date
  given today -> "2019-06-05", schedule -> "monthly", expected_date -> "2019-06-20"
    determines the next appointment date
  given today -> "2019-06-05", schedule -> "bi-weekly", expected_date -> "2019-06-20"
    determines the next appointment date

Finished in 0.00136 seconds (files took 0.12486 seconds to load)
3 examples, 0 failures

Usage

# Gemfile

group :test do
  gem "rspec-with_params"
end

Extend specific test groups:

require "rspec/with_params/dsl"

RSpec.describe "my complex business logic" do
  extend RSpec::WithParams::DSL

  # examples...
end

Or configure RSpec globally:

require "rspec/with_params/dsl"

RSpec.configure do |config|
  config.extend(RSpec::WithParams::DSL)
end

Development

git clone git@github.com:odlp/rspec-with_params.git
cd rspec-with_params
bundle
bundle exec rake

Alternatives

License

The gem is available as open source under the terms of the MIT License.