Files
fizzy/test/controllers/users/events_controller_test.rb
2025-11-02 17:31:28 +01:00

18 lines
368 B
Ruby

require "test_helper"
class Users::EventsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "show self" do
get user_events_path(users(:kevin))
assert_in_body "What have you been up to?"
end
test "show other" do
get user_events_path(users(:david))
assert_in_body "What has David been up to?"
end
end