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