Created
August 15, 2013 15:11
-
-
Save phlco/6241633 to your computer and use it in GitHub Desktop.
putting together testing gems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group :test do | |
gem 'cucumber' # a tool for running automated tests written in plain language | |
# https://github.com/cucumber/cucumber | |
gem 'test-unit' | |
gem 'guard' | |
gem 'guard-rspec' | |
gem 'shoulda-matchers' | |
gem 'rb-fsevent' | |
end | |
group :development, :test do | |
gem 'capybara' # test web applications by simulating how a real user would interact with your app | |
# https://github.com/jnicklas/capybara | |
gem 'rspec-rails' # a testing framework for Rails 3.x and 4.x. | |
# https://github.com/rspec/rspec-rails | |
gem 'launchy' # helper class for launching cross-platform applications in a fire and forget manner. | |
# https://github.com/copiousfreetime/launchy | |
gem 'database_cleaner' # a set of strategies for cleaning your database in Ruby | |
# https://github.com/bmabey/database_cleaner | |
gem 'ffaker' # used to easily generate fake data: names, addresses, phone numbers, etc. | |
# https://github.com/EmmanuelOga/ffaker | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment