aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorThiago Pradi <thiago.pradi@gmail.com>2012-02-12 21:05:30 -0200
committerThiago Pradi <thiago.pradi@gmail.com>2012-02-12 21:05:30 -0200
commitc6e6598d96fff11e21756198b9ee609a52b6e383 (patch)
treeb5d86c6fba759ebcffc88fc836bedfd170df5b1e /actionpack/test/controller
parent815e4453310858f9cfbccf4b41f943c9448aea07 (diff)
downloadrails-c6e6598d96fff11e21756198b9ee609a52b6e383.tar.gz
rails-c6e6598d96fff11e21756198b9ee609a52b6e383.tar.bz2
rails-c6e6598d96fff11e21756198b9ee609a52b6e383.zip
Removing old Controller test
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/addresses_render_test.rb37
1 files changed, 0 insertions, 37 deletions
diff --git a/actionpack/test/controller/addresses_render_test.rb b/actionpack/test/controller/addresses_render_test.rb
deleted file mode 100644
index 07f27fd362..0000000000
--- a/actionpack/test/controller/addresses_render_test.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-require 'abstract_unit'
-require 'active_support/logger'
-require 'controller/fake_controllers'
-
-class Address
- class << self
- def count(conditions = nil, join = nil)
- nil
- end
-
- def find_all(arg1, arg2, arg3, arg4)
- []
- end
-
- def find(*args)
- []
- end
- end
-end
-
-class AddressesTest < ActionController::TestCase
- tests AddressesController
-
- 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
-
- def test_list
- get :list
- assert_equal "We only need to get this far!", @response.body.chomp
- end
-end