heartcombo--simple_form/test/support/mock_response.rb

15 lines
180 B
Ruby
Raw Normal View History

2009-12-08 13:48:31 +00:00
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