Fix up the tests

This commit is contained in:
David Heinemeier Hansson
2025-04-05 15:26:49 +02:00
parent e4c6fe4b55
commit 866a80e133
@@ -7,17 +7,25 @@ class Bubbles::PinsControllerTest < ActionDispatch::IntegrationTest
test "create" do
assert_changes -> { bubbles(:layout).pinned_by?(users(:kevin)) }, from: false, to: true do
post bucket_bubble_pin_url(buckets(:writebook), bubbles(:layout))
perform_enqueued_jobs do
assert_turbo_stream_broadcasts([ users(:kevin), :pins ], count: 1) do
post bucket_bubble_pin_path(buckets(:writebook), bubbles(:layout))
end
end
end
assert_redirected_to bucket_bubble_pin_url(buckets(:writebook), bubbles(:layout))
assert_redirected_to bucket_bubble_pin_path(buckets(:writebook), bubbles(:layout))
end
test "destroy" do
assert_changes -> { bubbles(:shipping).pinned_by?(users(:kevin)) }, from: true, to: false do
delete bucket_bubble_pin_url(buckets(:writebook), bubbles(:shipping))
perform_enqueued_jobs do
assert_turbo_stream_broadcasts([ users(:kevin), :pins ], count: 1) do
delete bucket_bubble_pin_path(buckets(:writebook), bubbles(:shipping))
end
end
end
assert_redirected_to bucket_bubble_pin_url(buckets(:writebook), bubbles(:shipping))
assert_redirected_to bucket_bubble_pin_path(buckets(:writebook), bubbles(:shipping))
end
end