mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
40bdbce191
".. with __dir__ we can restore order in the Universe." - by @fxn
Related to 5b8738c2df
26 lines
567 B
Ruby
26 lines
567 B
Ruby
require "abstract_unit"
|
|
|
|
module TestApiFileUtils
|
|
def file_path() __FILE__ end
|
|
def file_data() @data ||= File.open(file_path, "rb") { |f| f.read } 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
|