56 lines
1.7 KiB
Ruby
56 lines
1.7 KiB
Ruby
require "test_helper"
|
|
|
|
class Cards::StepsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
sign_in_as :kevin
|
|
end
|
|
|
|
test "create" do
|
|
card = cards(:logo)
|
|
|
|
assert_difference -> { card.steps.count }, +1 do
|
|
post card_steps_path(card), params: { step: { content: "Research alternatives" } }, as: :turbo_stream
|
|
assert_card_container_rerendered(card)
|
|
end
|
|
|
|
assert_equal "Research alternatives", card.steps.last.content
|
|
end
|
|
|
|
test "update" do
|
|
card = cards(:logo)
|
|
step = card.steps.create!(content: "Original content")
|
|
|
|
assert_changes -> { step.reload.content }, from: "Original content", to: "Updated content" do
|
|
put card_step_path(card, step), params: { step: { content: "Updated content" } }, as: :turbo_stream
|
|
assert_card_container_rerendered(card)
|
|
end
|
|
end
|
|
|
|
test "destroy" do
|
|
card = cards(:logo)
|
|
step = card.steps.create!(content: "Step to delete")
|
|
|
|
assert_difference -> { card.steps.count }, -1 do
|
|
delete card_step_path(card, step), as: :turbo_stream
|
|
assert_card_container_rerendered(card)
|
|
end
|
|
end
|
|
|
|
test "toggle completion" do
|
|
card = cards(:logo)
|
|
step = card.steps.create!(content: "Test step", completed: false)
|
|
|
|
# Toggle to completed
|
|
assert_changes -> { step.reload.completed? }, from: false, to: true do
|
|
put card_step_path(card, step), params: { step: { completed: "1" } }, as: :turbo_stream
|
|
assert_card_container_rerendered(card)
|
|
end
|
|
|
|
# Toggle back to incomplete
|
|
assert_changes -> { step.reload.completed? }, from: true, to: false do
|
|
put card_step_path(card, step), params: { step: { completed: "0" } }, as: :turbo_stream
|
|
assert_card_container_rerendered(card)
|
|
end
|
|
end
|
|
end
|