rails--rails/activerecord/test
Jamis Buck 361be5a7dd Removed the AR::Recursion module--it broke more code than it fixed
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1470 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-06-21 12:58:27 +00:00
..
connections Fixed the MS SQL adapter to work with the new limit/offset approach and with binary data (still suffering from 7KB limit, though) #901 [delynnb] 2005-03-23 00:56:13 +00:00
fixtures Fixed that adding a record to a has_and_belongs_to collection would always save it -- now it only saves if its a new record #1203 [Alisdair McDiarmid] 2005-06-18 05:28:59 +00:00
aaa_create_tables_test.rb Added preliminary support for an agile database migration technique (currently only for MySQL) 2005-03-01 14:27:32 +00:00
abstract_unit.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
active_schema_mysql.rb More incremental work on active schema for MySQL 2005-03-10 14:24:28 +00:00
aggregations_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
all.sh Initial 2004-11-24 01:04:44 +00:00
association_inheritance_reload.rb Fixed dependency reloading by switching to a remove_const approach where all Active Records, Active Record Observers, and Action Controllers are reloading by undefining their classes. This enables you to remove methods in all three types and see the change reflected immediately and it fixes #539. This also means that only those three types of classes will benefit from the const_missing and reloading approach. If you want other classes (like some in lib/) to reload, you must use require_dependency to do it. 2005-01-25 18:45:06 +00:00
associations_go_eager_test.rb Don't expect fixtures to be returned in the order they were inserted. 2005-06-11 20:56:12 +00:00
associations_test.rb Removed the AR::Recursion module--it broke more code than it fixed 2005-06-21 12:58:27 +00:00
base_test.rb Be sure to use the @finder_sql in the has_many association's #find method, even if explicit conditions have not been given. 2005-06-13 12:03:33 +00:00
binary_test.rb Added an Oracle adapter that works with the Oracle bindings by Yoshida (http://raa.ruby-lang.org/project/oracle/) #564 [Maik Schmidt] 2005-02-07 14:06:00 +00:00
callbacks_test.rb Removed the AR::Recursion module--it broke more code than it fixed 2005-06-21 12:58:27 +00:00
class_inheritable_attributes_test.rb Moved Active Support into its own gem 2005-02-15 15:57:44 +00:00
column_alias_test.rb Proper order in test #1329 2005-06-21 05:58:42 +00:00
deprecated_associations_test.rb Be sure to use the @finder_sql in the has_many association's #find method, even if explicit conditions have not been given. 2005-06-13 12:03:33 +00:00
deprecated_finder_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
finder_test.rb Fix quote_bound_value to not map Strings #1416 [htonl] 2005-06-16 10:13:37 +00:00
fixtures_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
inheritance_test.rb Be sure to use the @finder_sql in the has_many association's #find method, even if explicit conditions have not been given. 2005-06-13 12:03:33 +00:00
lifecycle_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
locking_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
migration_mysql.rb Added preliminary support for an agile database migration technique (currently only for MySQL) 2005-03-01 14:27:32 +00:00
mixin_nested_set_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
mixin_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
modules_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
multiple_db_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
pk_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
reflection_test.rb Return PostgreSQL columns in the order they are declared #1374 (perlguy@gmail.com). Unit test column order, adapter housekeeping, simplify users of columns_hash. 2005-06-12 06:56:51 +00:00
schema_test_postgresql.rb r1278@iwill: jeremy | 2005-06-12 05:11:48 -0700 2005-06-12 22:05:30 +00:00
thread_safety_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
transactions_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
unconnected_test.rb Do not use instantiated fixtures (in general) in tests. Also, support the use of transactional fixtures by setting the AR_TX_FIXTURES environment variable to "yes". 2005-06-10 14:58:02 +00:00
validations_test.rb Added Errors#add_on_blank which works like Errors#add_on_empty, but uses Object#blank? instead. CHANGED: validates_presence_of now uses Errors#add_on_blank, which will make " " fail the validation where it didnt before #1309. Added that " " is now also blank? (using strip if available) 2005-05-21 18:12:36 +00:00