Commit a6be663ff3f149dc53fefadeb068f551230c815d
1 parent
ed85a420
Exists in
master
and in
1 other branch
rescue LoadError
Showing
1 changed file
with
7 additions
and
1 deletions
Show diff stats
config/environments/test.rb
... | ... | @@ -38,5 +38,11 @@ config.gem 'thoughtbot-shoulda', |
38 | 38 | |
39 | 39 | HOST = 'localhost' |
40 | 40 | |
41 | -begin require 'redgreen'; rescue LoadError; end | |
41 | +begin | |
42 | + require 'shoulda' | |
43 | + require 'factory_girl' | |
44 | + require 'mocha' | |
45 | + require 'redgreen' | |
46 | +rescue LoadError | |
47 | +end | |
42 | 48 | ... | ... |