rails/activerecord/test
David Heinemeier Hansson 44073321a8 SqlServer fixtures - CategoriesPosts
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1191 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-04-17 13:57:25 +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 SqlServer fixtures - CategoriesPosts 2005-04-17 13:57:25 +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 Skip Active Record tests in Action Pack if the SQLite database cant be brought up 2005-02-17 19:28:13 +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 Added better defaults for composed_of, so statements like composed_of :time_zone, :mapping => %w( time_zone time_zone ) can be written without the mapping part (it's now assumed) 2005-03-01 23:52:36 +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 Dont initialize the association proxy for nil records 2005-04-14 07:49:13 +00:00
associations_test.rb Moved build_association and create_association for has_one and belongs_to out of deprecation as they work when the association is nil unlike association.build and association.create, which require the association to be already in place #864 2005-04-12 05:34:10 +00:00
base_test.rb decrease reliance on instantiated fixtures #980 [Jeremy Kemper] 2005-04-02 08:36:32 +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 Added that all types of after_find/after_initialized callbacks are triggered if the explicit implementation is present, not only the explicit implementation itself 2005-03-14 00:04:14 +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 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
deprecated_associations_test.rb Moved build_association and create_association for has_one and belongs_to out of deprecation as they work when the association is nil unlike association.build and association.create, which require the association to be already in place #864 2005-04-12 05:34:10 +00:00
deprecated_finder_test.rb Added new Base.find API and deprecated find_all, find_first. Added preliminary support for eager loading of associations 2005-04-03 10:52:05 +00:00
finder_test.rb Added tests 2005-04-03 11:19:14 +00:00
fixtures_test.rb Added quoting of column names for fixtures #997 [jcfischer@gmail.com] 2005-04-07 06:54:25 +00:00
inheritance_test.rb Added a better exception for when a type column is used in a table without the intention of triggering single-table inheritance. Added that single-table inheritance will only kick in if the inheritance_column (by default "type") is present. Otherwise, inheritance wont have any magic side effects 2004-12-14 12:32:29 +00:00
lifecycle_test.rb Remove outdated dev-utils 2005-02-23 14:30:24 +00:00
locking_test.rb Added automated optimistic locking if the field lock_version is present #384 [Michael Koziarski] 2004-12-31 19:38:04 +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 Added acts_as_nested_set #1000 [wschenk] 2005-04-17 09:59:52 +00:00
mixin_test.rb Added acts_as_nested_set #1000 [wschenk] 2005-04-17 09:52:12 +00:00
modules_test.rb Remove outdated dev-utils 2005-02-23 14:30:24 +00:00
multiple_db_test.rb Initial 2004-11-24 01:04:44 +00:00
pk_test.rb Initial 2004-11-24 01:04:44 +00:00
reflection_test.rb Fixed reflection_for_gps_location test 2005-03-06 11:56:22 +00:00
thread_safety_test.rb Initial 2004-11-24 01:04:44 +00:00
transactions_test.rb Fixed that nested transactions now work by letting the outer most transaction have the responsibilty of starting and rolling back the transaction. If any of the inner transactions swallow the exception raised, though, the transaction will not be rolled back. So always let the transaction bubble up even when you've dealt with local issues. Closes #231 and #340. 2004-12-22 00:48:24 +00:00
unconnected_test.rb Initial 2004-11-24 01:04:44 +00:00
validations_test.rb Added the option to specify the acceptance string in validates_acceptance_of #1106 [caleb@aei-tech.com] 2005-04-17 10:04:07 +00:00