1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/api/data_streaming_test.rb
2020-05-13 00:05:32 +01:00

28 lines
580 B
Ruby

# frozen_string_literal: true
require "abstract_unit"
module TestApiFileUtils
def file_path() __FILE__ end
def file_data() @data ||= File.binread(file_path) end
end
class DataStreamingApiController < ActionController::API
include TestApiFileUtils
def one; end
def two
send_data(file_data, {})
end
end
class DataStreamingApiTest < ActionController::TestCase
include TestApiFileUtils
tests DataStreamingApiController
def test_data
response = process("two")
assert_kind_of String, response.body
assert_equal file_data, response.body
end
end