14 lines
270 B
Ruby
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
|