Files
growstuff/spec/controllers/registrations_controller_spec.rb
google-labs-jules[bot] 0b639d5940 Remove twitter authentication
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.
2025-08-24 07:03:20 +00:00

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