Files
fizzy/test/controllers/cards/previews_controller_test.rb
T
2025-04-10 15:09:56 +02:00

14 lines
241 B
Ruby

require "test_helper"
class Cards::PreviewsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
get cards_previews_url(format: :turbo_stream)
assert_response :success
end
end