Removing old Controller test

This commit is contained in:
Thiago Pradi 2012-02-12 21:05:30 -02:00
parent 815e445331
commit c6e6598d96
3 changed files with 0 additions and 39 deletions

@ -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

@ -1 +0,0 @@
We only need to get this far!

@ -14,7 +14,6 @@ class ProductsController < ActionController::Base; end
end
class AccountController < ActionController::Base; end
class AddressesController < ActionController::Base; end
class ArchiveController < ActionController::Base; end
class ArticlesController < ActionController::Base; end
class BarController < ActionController::Base; end