mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
8f94cc5cb4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6306 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
43 lines
1,022 B
Ruby
43 lines
1,022 B
Ruby
require File.dirname(__FILE__) + '/../abstract_unit'
|
|
|
|
class Address
|
|
|
|
def Address.count(conditions = nil, join = nil)
|
|
nil
|
|
end
|
|
|
|
def Address.find_all(arg1, arg2, arg3, arg4)
|
|
[]
|
|
end
|
|
|
|
def self.find(*args)
|
|
[]
|
|
end
|
|
end
|
|
|
|
class AddressesTestController < ActionController::Base
|
|
def self.controller_name; "addresses"; end
|
|
def self.controller_path; "addresses"; end
|
|
end
|
|
|
|
AddressesTestController.view_paths = [ File.dirname(__FILE__) + "/../fixtures/" ]
|
|
|
|
class AddressesTest < Test::Unit::TestCase
|
|
def setup
|
|
@controller = AddressesTestController.new
|
|
|
|
# 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 = ActionController::TestRequest.new
|
|
@response = ActionController::TestResponse.new
|
|
|
|
@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
|