Methods
S
T
Instance Public methods
setup()
# File actionpack/test/controller/addresses_render_test.rb, line 22
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 = Logger.new(nil)

  @request.host = "www.nextangle.com"
end
test_list()
# File actionpack/test/controller/addresses_render_test.rb, line 31
def test_list
  get :list
  assert_equal "We only need to get this far!", @response.body.chomp
end