Files
fizzy/test/controllers/cards/publishes_controller_test.rb
T
Jorge Manrubia 9dc221f0b2 Add test
2025-06-13 08:58:06 +02:00

32 lines
703 B
Ruby

require "test_helper"
class Cards::PublishesControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "create" do
card = cards(:logo)
card.drafted!
assert_changes -> { card.reload.published? }, from: false, to: true do
post card_publish_path(card)
end
assert_redirected_to card
end
test "create and add another" do
card = cards(:logo)
card.drafted!
assert_changes -> { card.reload.published? }, from: false, to: true do
assert_difference -> { Card.creating.count }, +1 do
post card_publish_path(card, creation_type: "add_another")
end
end
assert_redirected_to Card.creating.last
end
end