mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-24 17:27:50 -05:00
We deprecated controller and view specs on the grounds that they were brittle, and were a poorer measure of user experience than feature specs. However, feature specs have their own problems: they're much slower to run, and flakier (see #901). We also ran into a few cases where feature specs erroneously passed because they were checking for the presence of a string that occurred in the error page! Hence, we're cautiously un-deprecating controller and view specs. Fixes #1132
17 lines
464 B
Ruby
17 lines
464 B
Ruby
require 'rails_helper'
|
|
|
|
describe AuthenticationsController do
|
|
before(:each) do
|
|
@member = FactoryBot.create(:member)
|
|
sign_in @member
|
|
controller.stub(:current_member) { @member }
|
|
@auth = FactoryBot.create(:authentication, member: @member)
|
|
request.env['omniauth.auth'] = {
|
|
'provider' => 'foo',
|
|
'uid' => 'bar',
|
|
'info' => { 'nickname' => 'blah' },
|
|
'credentials' => { 'token' => 'blah', 'secret' => 'blah' }
|
|
}
|
|
end
|
|
end
|