24 lines
719 B
Ruby
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
|