Files
fizzy/test/controllers/cards/watches_controller_test.rb
T
2025-12-10 09:23:52 +01:00

48 lines
1.1 KiB
Ruby

require "test_helper"
class Cards::WatchesControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "create" do
cards(:logo).unwatch_by users(:kevin)
assert_changes -> { cards(:logo).watched_by?(users(:kevin)) }, from: false, to: true do
post card_watch_path(cards(:logo)), as: :turbo_stream
end
end
test "destroy" do
cards(:logo).watch_by users(:kevin)
assert_changes -> { cards(:logo).watched_by?(users(:kevin)) }, from: true, to: false do
delete card_watch_path(cards(:logo)), as: :turbo_stream
end
end
test "create as JSON" do
card = cards(:logo)
card.unwatch_by users(:kevin)
assert_not card.watched_by?(users(:kevin))
post card_watch_path(card), as: :json
assert_response :no_content
assert card.reload.watched_by?(users(:kevin))
end
test "destroy as JSON" do
card = cards(:logo)
card.watch_by users(:kevin)
assert card.watched_by?(users(:kevin))
delete card_watch_path(card), as: :json
assert_response :no_content
assert_not card.reload.watched_by?(users(:kevin))
end
end