Project

rast

0.0
Low commit activity in last 3 years
Extends RSpec functionality by using the catch-all-scenario testing (CAST) principle.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Overview

RSpec All Scenario Testing

Gem Version Build Status Test Coverage Maintainability

This library runs on top of RSpec to provide basically a parameterized unit testing pattern. It follows a specific pattern of writing unit tests, enabling a predictable, complete and outputs a result that is simple to analyze.

A Basic Example

Suppose we want to create a class that checks if a number is a positive or a negative number.

Create a spec file spec/positive_spec.rb

require 'rast'

rast Positive do
  spec 'Is Positive Example' do
    execute { |number| subject.positive?(number) }
  end
end

Create a spec configuration spec/rast/positive_spec.yml

---
specs:
  Is Positive Example:
    variables: {number: [-1, 0, 1]}
    outcomes: {true: 1}

The class to test:

# positive.rb
class Positive
  def positive?(number)
    number > 0
  end
end

Running the test:

$ rspec -fd spec/examples/positive_spec.rb

Test result:

Positive: #positive?
  [false]=[number: -1]
  [false]=[number: 0]
  [true]=[number: 1]

Finished in 0.00471 seconds (files took 0.47065 seconds to load)
3 examples, 0 failures

See the documentation for more examples.

How to use this project

  1. Run $ bundle install
  2. Run $ bundle exec rspec

Troubleshooting

  • Delete the Gemfile.lock and reinstall.

Contributing

Definition of terms

  • spec - as defined in the YAML file, the individual elements under specs.
  • scenario - a specific combination of tokens from vars, it can uniquely identify a fixture.
  • token - used loosely to denote the individual variable in a rule. e.g. true: you & me, you and me are tokens.
  • fixture - a hash containing a scenario, references back to the spec, and the expected result for the given scenario.
  • variables - raw list of variables to be combined into multiple fixtures.
  • rule - set of outcomes, each paired with a rule clause.
  • exclusions - rule defining the variable combinations to be excluded from the test.
  • inclusions - rule that limits the scenarios to be included. Useful for isolating test cases.
  • outcome - the left portion us of a rule, e.g. us: you&me
  • clause - the right portion you&me of a rule, e.g. us: you&me

Notes to author

When running the tests, the execution starts at the spec file, then invokes the DSL. The DSL will then invoke the parameter generator to generate the scenarios.

Releasing new features/bugfix

Releasing the GEM

  • Build gem with gem build rast.gemspec
  • Publish with gem push <gem-filename>

References