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

14 lines
295 B
Ruby

require "test_helper"
class Prompts::Collections::UsersControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
@collection = collections(:writebook)
end
test "index" do
get prompts_collection_users_path(@collection)
assert_response :success
end
end