playground/test/controllers/welcome_controller_test.rb

9 lines
179 B
Ruby
Raw Normal View History

2026-05-17 03:44:36 +00:00
require "test_helper"
class WelcomeControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get welcome_index_url
assert_response :success
end
end