Commit e372474dd84697258518f38656029c8982d30e08
1 parent
359f5d1c
Exists in
master
and in
11 other branches
Restore behavior of the `default` rake task
When you load rspec in the Gemfile, it will override the default task and try to run specs from spec/ (which don't exist in noosfero) instead of the tests from test/.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Gemfile
... | ... | @@ -54,8 +54,8 @@ group :development, :test do |
54 | 54 | end |
55 | 55 | |
56 | 56 | group :test do |
57 | - gem 'rspec', '~> 3.3' | |
58 | - gem 'rspec-rails', '~> 3.2' | |
57 | + gem 'rspec', '~> 3.3', require: false | |
58 | + gem 'rspec-rails', '~> 3.2', require: false | |
59 | 59 | gem 'mocha', '~> 1.1.0', :require => false |
60 | 60 | gem 'test-unit' if RUBY_VERSION >= '2.2.0' |
61 | 61 | gem 'minitest' | ... | ... |