mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
14 lines
180 B
Ruby
14 lines
180 B
Ruby
class MockResponse
|
|
|
|
def initialize(test_case)
|
|
@test_case = test_case
|
|
end
|
|
|
|
def content_type
|
|
'text/html'
|
|
end
|
|
|
|
def body
|
|
@test_case.send :output_buffer
|
|
end
|
|
end
|