Files
fizzy/test/controllers/prompts/boards/users_controller_test.rb
T
2025-11-05 13:41:12 +01:00

14 lines
270 B
Ruby

require "test_helper"
class Prompts::Boards::UsersControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
@board = boards(:writebook)
end
test "index" do
get prompts_board_users_path(@board)
assert_response :success
end
end