mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-19 01:46:16 +10:00
11 lines
230 B
Ruby
11 lines
230 B
Ruby
class TestController < ApplicationController
|
|
skip_before_filter :require_login, :only => :test_login
|
|
|
|
def test_login
|
|
if Rails.env.test?
|
|
session[:email] = "test@gmail.com"
|
|
redirect_to "/teams"
|
|
end
|
|
end
|
|
end
|