mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
96a1a2a37c
Followup to b31022052a
.
28 lines
580 B
Ruby
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
|