diff --git a/spec/controllers/invitations_controller_spec.rb b/spec/controllers/invitations_controller_spec.rb index db24455e34ffabcafa0e38db6f12d45c99a1d66d..300ab78af5eb1a35df0c7059fc602b7646284638 100644 --- a/spec/controllers/invitations_controller_spec.rb +++ b/spec/controllers/invitations_controller_spec.rb @@ -78,4 +78,18 @@ describe InvitationsController do get :new end end + + describe 'redirect logged out users to the sign in page' do + it 'redriects #new' do + get :new + response.should be_redirect + response.should redirect_to new_user_session_path + end + + it 'redirects #create' do + post :create + response.should be_redirect + response.should redirect_to new_user_session_path + end + end end