Files
fizzy/test/controllers/my/pins_controller_test.rb
T
David Heinemeier Hansson 25b89ce8a9 Trailing CR
2025-04-05 17:18:18 +02:00

15 lines
278 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