Add RSpec and Capybara, and a basic feature spec
Showing
.rspec
0 → 100644
| ... | @@ -23,3 +23,9 @@ group :production do | ... | @@ -23,3 +23,9 @@ group :production do |
| # use postgres in production, or move outside a group if your app uses postgres for development and production | # use postgres in production, or move outside a group if your app uses postgres for development and production | ||
| gem 'pg' | gem 'pg' | ||
| end | end | ||
| group :test do | |||
| gem 'rspec' | |||
| gem 'capybara' | |||
| gem 'database_cleaner' | |||
| end |
spec/features/home_spec.rb
0 → 100644
spec/models/.keep
0 → 100644
spec/spec_helper.rb
0 → 100644
Please register or sign in to comment