Files
fizzy/test/controllers/bubbles/pins_controller_test.rb
T
Jason Zimdars 28a569c49b Tickets
2025-03-17 21:24:08 -05:00

24 lines
719 B
Ruby

require "test_helper"
class Bubbles::PinsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
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))
end
assert_redirected_to bucket_bubble_pin_url(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))
end
assert_redirected_to bucket_bubble_pin_url(buckets(:writebook), bubbles(:shipping))
end
end