Files
fizzy/test/controllers/conversations_controller_test.rb
T
2025-08-13 15:14:12 +02:00

13 lines
213 B
Ruby

require "test_helper"
class ConversationsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end
test "show" do
get conversation_path
assert_response :success
end
end