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.
Visit the documentation website to check out the guides, API reference, and examples.
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