mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-02-21 12:10:34 +09:00
22 lines
486 B
Ruby
22 lines
486 B
Ruby
require "test_helper"
|
|
|
|
class WelcomeControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in :david
|
|
end
|
|
|
|
test "redirects to the first created visible room the user has access to" do
|
|
get root_url
|
|
|
|
assert_redirected_to room_url(users(:david).rooms.original)
|
|
end
|
|
|
|
test "redirects to the last room visited, if we have one" do
|
|
cookies[:last_room] = rooms(:watercooler).id
|
|
|
|
get root_url
|
|
|
|
assert_redirected_to room_url(rooms(:watercooler))
|
|
end
|
|
end
|