Files
fizzy/test/controllers/cards/triages_controller_test.rb
T
2025-09-28 21:11:07 +02:00

28 lines
659 B
Ruby

require "test_helper"
class Cards::TriagesControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "create" do
card = cards(:logo)
original_column = card.column
column = columns(:writebook_in_progress)
assert_changes -> { card.reload.column }, from: original_column, to: column do
post card_triage_path(card, column_id: column.id)
assert_card_container_rerendered(card)
end
end
test "destroy" do
card = cards(:shipping)
assert_changes -> { card.reload.column }, to: nil do
delete card_triage_path(card)
assert_card_container_rerendered(card)
end
end
end