notebook/test/controllers/conversation_controller_test.rb
2023-04-15 11:41:37 -07:00

9 lines
193 B
Ruby

require "test_helper"
class ConversationControllerTest < ActionDispatch::IntegrationTest
test "should get content" do
get conversation_content_url
assert_response :success
end
end