Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 704 Bytes

RUNNING_TESTS.md

File metadata and controls

27 lines (17 loc) · 704 Bytes

Running Tests

This project uses rspec-rails for testing and appraisal for managing multiple rails versions.

Testing against different rails versions

For running the specs for all the rails supported versions, you can run:

appraisal rspec

If you want to run the test suite for a singe rails version you can run:

appraisal <rails-version> rspec

So running appraisal rails-4-2 rspec will run the test suite with rails 4.2 installed.

Testing with latest rails version

Additionally, if you want to run the specs using the version installed from the gemspec, you can just run:

rspec