Skip to content

Instantly share code, notes, and snippets.

@martinstreicher
Created December 4, 2011 21:02
Show Gist options
  • Save martinstreicher/1431262 to your computer and use it in GitHub Desktop.
Save martinstreicher/1431262 to your computer and use it in GitHub Desktop.
Controller test
require 'spec_helper'
describe AccountsController do
before :each do
@user = create :user_with_requested_subdomain
@request.host = "#{@user.subdomain}.local"
end
describe 'authenticate_user!' do
it 'precludes access unless logged in' do
get 'index'
response.should redirect_to new_user_session_url
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment