Skip to content

Instantly share code, notes, and snippets.

@acidlabs-snippets
Created December 3, 2012 18:52
Show Gist options
  • Save acidlabs-snippets/4197074 to your computer and use it in GitHub Desktop.
Save acidlabs-snippets/4197074 to your computer and use it in GitHub Desktop.
Rspec Devise - Sign In User
# spec/spec_helper.rb
Dir[Rails.root.join("spec/support/**/*.rb")].each { |f| require f }
# spec/support/devise.rb
RSpec.configure do |config|
config.include Devise::TestHelpers, type: :controller
end
# spec/controllers/whatever/controller/that/needs/authentication.rb
before :each do
sign_in user
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment