Files
fizzy/test/controllers/prompts/boards/users_controller_test.rb
T

15 lines
318 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
assert_select "lexxy-prompt-item", count: 3
end
end