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

13 lines
216 B
Ruby

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