1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activeresource/test/cases
Carlhuda c1304098cc Reorganize autoloads:
* A new module (ActiveSupport::Autoload) is provide that extends
    autoloading with new behavior.
  * All autoloads in modules that have extended ActiveSupport::Autoload
    will be eagerly required in threadsafe environments
  * Autoloads can optionally leave off the path if the path is the same
    as full_constant_name.underscore
  * It is possible to specify that a group of autoloads live under an
    additional path. For instance, all of ActionDispatch's middlewares
    are ActionDispatch::MiddlewareName, but they live under 
    "action_dispatch/middlewares/middleware_name"
  * It is possible to specify that a group of autoloads are all found
    at the same path. For instance, a number of exceptions might all
    be declared there.
  * One consequence of this is that testing-related constants are not
    autoloaded. To get the testing helpers for a given component,
    require "component_name/test_case". For instance, "action_controller/test_case".
  * test_help.rb, which is automatically required by a Rails application's
    test helper, requires the test_case.rb for all active components, so
    this change will not be disruptive in existing or new applications.
2009-12-02 20:01:08 -08:00
..
base Symbol#to_proc is not needed for Ruby >= 1.8.7 2009-11-09 22:16:51 +01:00
authorization_test.rb Digest auth option for ActiveResource. 2009-10-15 10:37:04 +13:00
base_errors_test.rb Fix brittle content-type check. [#1956 state:committed] 2009-09-17 11:34:40 -07:00
base_test.rb Reorganize autoloads: 2009-12-02 20:01:08 -08:00
finder_test.rb Added first/last/all aliases for equivalent find scopes 2009-08-21 14:49:59 -05:00
format_test.rb Moved all test cases into a new test/cases directory to match Active Record test directory structure. 2009-08-19 09:03:57 -05:00
observing_test.rb Fix for Ruby 1.9 - define_method throws an exception under 1.9 if given incorrect number of args 2009-10-08 10:48:47 -07:00
validations_test.rb Fix failing ARes isolated tests 2009-09-05 19:24:43 -05:00