Skip to content

Latest commit

 

History

History

rails_app

Capybara Test Helpers in Rails 🛤

This example app uses Capybara Test Helpers to implement its integration tests.

It provides examples on how to write both Cucumber features and RSpec system specs.

Write tests that everyone can understand, and leverage your Ruby skills to keep them easy to read and easy to change.

Documentation 📖

Visit the documentation website to check out the guides, API reference, and examples.

Generators ⚙️

Generate a test helper by running:

$ rails g test_helper users

The generator assumes that you have a BaseTestHelper, which you can generate by running:

$ rails g test_helper base