RailsApps/rails3-mongoid-omniauth

rake spec fails on new app

Closed this issue · 3 comments

rake spec fails on new app.
to reproduce:

 rails new dummy -m https://raw.github.com/RailsApps/rails-composer/master/composer.rb -T -O
 cd dummy 
 rake spec

Finished in 0.09111 seconds
11 examples, 8 failures, 1 pending

hiaw commented

I find that this seems to help pass some of the test but not all
@user = FactoryGirl.create(:user)
instead of
@user = create(:user)

I've now got all the specs passing except one.

rspec ./spec/controllers/users_controller_spec.rb:51 # UsersController PUT update with an error renders edit template

Fixed in pull request #23, I believe.