mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-27 02:37:53 -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
30 lines
773 B
Ruby
30 lines
773 B
Ruby
require 'rails_helper'
|
|
|
|
describe RegistrationsController do
|
|
before :each do
|
|
@member = FactoryBot.create(:member)
|
|
sign_in @member
|
|
controller.stub(:current_user) { @member }
|
|
controller.stub(:devise_mapping).and_return(Devise.mappings[:member])
|
|
end
|
|
|
|
describe "GET edit" do
|
|
it "assigns the requested member as @member" do
|
|
get :edit
|
|
assigns(:member).should eq(@member)
|
|
end
|
|
|
|
it "picks up the twitter auth" do
|
|
@auth = FactoryBot.create(:authentication, member: @member)
|
|
get :edit
|
|
assigns(:twitter_auth).should eq @auth
|
|
end
|
|
|
|
it "picks up the flickr auth" do
|
|
@auth = FactoryBot.create(:flickr_authentication, member: @member)
|
|
get :edit
|
|
assigns(:flickr_auth).should eq @auth
|
|
end
|
|
end
|
|
end
|