Skip to content

Files

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 16, 2020
Apr 15, 2020
Apr 15, 2020
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. :::