bfb7ed1216
We used the my/ space in HEY to reflect anything that was primarily hinged off Current.user. Good to use here too.
16 lines
279 B
Ruby
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
|
|
|