Sha256: 87292ab280583808901c3a9b5a0fb0b497ed0d789e462f28cf9cbcf9608e0538
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
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 scaffold :address def self.controller_name; "addresses"; end def self.controller_path; "addresses"; end end AddressesTestController.template_root = 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 # because pagination is deprecated ActiveSupport::Deprecation.silence do get :list end assert_equal "We only need to get this far!", @response.body.chomp end end
Version data entries
4 entries across 4 versions & 2 rubygems