Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 971 Bytes

README.md

File metadata and controls

41 lines (36 loc) · 971 Bytes
home actionText actionLink footer
true
Get Started →
/guide/
MIT Licensed | Copyright © 2020-present Denis Talakevich

Fast Test Writing

Allow to focus on what you want to test instead of how to do it.

Simplicity

Following Ruby an Capybara naming conventions allows easily to read and understand tests code.

Customizable

You can easy extend, customize, and mix parts of library to fit your needs.

As Easy as 1, 2, 3

# install
gem install capybara_active_admin
# OR echo "gem 'capybara_active_admin', group: :test, require: false" >> Gemfile
# require in in rspec/rails_helper.rb
require 'capybara/active_admin/rspec'

::: warning COMPATIBILITY NOTE requires Ruby >= 2.3. :::