Files
fizzy/test/controllers/my/pins_controller_test.rb
T
2025-04-13 08:17:36 +02:00

15 lines
277 B
Ruby

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