Methods
S
T
Instance Public methods
setup()
# File actionview/test/actionpack/controller/capture_test.rb, line 38
def setup
  super
  # enable a logger so that (e.g.) the benchmarking stuff runs, so we can get
  # a more accurate simulation of what happens in "real life".
  @controller.logger = ActiveSupport::Logger.new(nil)

  @request.host = "www.nextangle.com"
end
test_content_for()
# File actionview/test/actionpack/controller/capture_test.rb, line 52
def test_content_for
  get :content_for
  assert_equal expected_content_for_output, @response.body
end
test_non_erb_block_content_for()
# File actionview/test/actionpack/controller/capture_test.rb, line 67
def test_non_erb_block_content_for
  get :non_erb_block_content_for
  assert_equal expected_content_for_output, @response.body
end
test_proper_block_detection()
# File actionview/test/actionpack/controller/capture_test.rb, line 72
def test_proper_block_detection
  get :proper_block_detection
  assert_equal "some todo", @response.body
end
test_should_concatenate_content_for()
# File actionview/test/actionpack/controller/capture_test.rb, line 57
def test_should_concatenate_content_for
  get :content_for_concatenated
  assert_equal expected_content_for_output, @response.body
end
test_should_set_content_for_with_parameter()
# File actionview/test/actionpack/controller/capture_test.rb, line 62
def test_should_set_content_for_with_parameter
  get :content_for_with_parameter
  assert_equal expected_content_for_output, @response.body
end
test_simple_capture()
# File actionview/test/actionpack/controller/capture_test.rb, line 47
def test_simple_capture
  get :capturing
  assert_equal "Dreamy days", @response.body.strip
end