Files
once-campfire/test/controllers/welcome_controller_test.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

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