Files
fizzy/test/controllers/cards/readings_controller_test.rb
T
2025-04-13 08:17:36 +02:00

16 lines
363 B
Ruby

require "test_helper"
class Cards::ReadingsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
assert_changes -> { notifications(:logo_published_kevin).reload.read? }, from: false, to: true do
post card_reading_path(cards(:logo)), as: :turbo_stream
end
assert_response :success
end
end