Skip to content

Instantly share code, notes, and snippets.

@phlco
Created August 15, 2013 15:11
Show Gist options
  • Save phlco/6241633 to your computer and use it in GitHub Desktop.
Save phlco/6241633 to your computer and use it in GitHub Desktop.
putting together testing gems
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