forked from External/greenlight
GRN2-217: Fixes issues with recording rows and localization (fixed #703-#705) (#707)
* Fixes issues with recording rows * Fixed small typo related to logs
This commit is contained in:
committed by
Jesus Federico
parent
d123d5add0
commit
02b342b157
@ -62,6 +62,16 @@ describe UsersController, type: :controller do
|
||||
end
|
||||
end
|
||||
|
||||
describe "GET #signin" do
|
||||
it "redirects to main room if already authenticated" do
|
||||
user = create(:user)
|
||||
@request.session[:user_id] = user.id
|
||||
|
||||
post :signin
|
||||
expect(response).to redirect_to(room_path(user.main_room))
|
||||
end
|
||||
end
|
||||
|
||||
describe "GET #edit" do
|
||||
it "renders the edit template" do
|
||||
user = create(:user)
|
||||
|
Reference in New Issue
Block a user