Files
fizzy/test/controllers/prompts/users_controller_test.rb
T
2025-07-03 12:46:36 +02:00

13 lines
216 B
Ruby

require "test_helper"
class Prompts::UsersControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
get prompts_users_path
assert_response :success
end
end