mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
This change removes the twitter authentication feature from the application. It removes the `omniauth-twitter` gem and all related code from controllers, views, and tests. It also removes the twitter icon and environment variable settings.
26 lines
624 B
Ruby
26 lines
624 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe RegistrationsController do
|
|
before 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 flickr auth" do
|
|
@auth = FactoryBot.create(:flickr_authentication, member: @member)
|
|
get :edit
|
|
assigns(:flickr_auth).should eq @auth
|
|
end
|
|
end
|
|
end
|