Created
September 6, 2019 08:08
-
-
Save amitpatelx/03dc8caf3d55b47cd491df40bce9de01 to your computer and use it in GitHub Desktop.
Basic gems used for rspec integration in Rails
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 :development, :test do | |
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] # for debugging | |
gem 'rspec-rails', '~> 3.8', '>= 3.8.2' # drop-in alternative testing framework for Minitest | |
gem 'factory_bot_rails' # replaces Rails fixtures | |
gem 'database_cleaner' # ensures a clean state for testing | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment