Files
fizzy/test/controllers/my/pins_controller_test.rb
T
David Heinemeier Hansson bfb7ed1216 Move pins to my space
We used the my/ space in HEY to reflect anything that was primarily
hinged off Current.user. Good to use here too.
2025-04-05 14:57:24 +02:00

16 lines
279 B
Ruby

require "test_helper"
class My::PinsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "index" do
get my_pins_url
assert_response :success
assert_select "div", text: /#{users(:kevin).pins.first.bubble.title}/
end
end