rails--rails/activerecord/test/fixtures
David Heinemeier Hansson 823554eafe Added support for associating unsaved objects #402 [Tim Bates]
Added replace to associations, so you can do project.manager.replace(new_manager) or project.milestones.replace(new_milestones) #402 [Tim Bates]
Added build and create methods to has_one and belongs_to associations, so you can now do project.manager.build(attributes) #402 [Tim Bates]
Fixed that Base#== wouldn't work for multiple references to the same unsaved object #402 [Tim Bates]
Added that if a before_* callback returns false, all the later callbacks and the associated action are cancelled. If an after_* callback returns false, all the later callbacks are cancelled. Callbacks are generally run in the order they are defined, with the exception of callbacks defined as methods on the model, which are called last. #402 [Tim Bates]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@417 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2005-01-15 17:45:16 +00:00
..
bad_fixtures Initial 2004-11-24 01:04:44 +00:00
db_definitions Fixed that foreign keys named the same as the association would cause stack overflow #437 [Eric Anderson] 2005-01-11 00:24:19 +00:00
developers_projects Initial 2004-11-24 01:04:44 +00:00
naked Added tree mixin and unit tests for all the mixins 2004-12-15 00:46:26 +00:00
subscribers Initial 2004-11-24 01:04:44 +00:00
accounts.yml Initial 2004-11-24 01:04:44 +00:00
associations.png Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly and come back mangled #405 [Tobias Luetke] 2005-01-01 18:34:39 +00:00
auto_id.rb Initial 2004-11-24 01:04:44 +00:00
binary.rb Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly and come back mangled #405 [Tobias Luetke] 2005-01-01 18:34:39 +00:00
column_name.rb Initial 2004-11-24 01:04:44 +00:00
companies.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
company.rb Added support for associating unsaved objects #402 [Tim Bates] 2005-01-15 17:45:16 +00:00
company_in_module.rb Added Base.validates_format_of that Validates whether the value of the specified attribute is of the correct form by matching it against the regular expression provided. [Marcel] 2004-12-16 01:32:35 +00:00
computer.rb git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@388 5ecf4fe2-1ee6-0310-87b1-e25e094e27de 2005-01-11 00:53:04 +00:00
computers.yml git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@388 5ecf4fe2-1ee6-0310-87b1-e25e094e27de 2005-01-11 00:53:04 +00:00
course.rb Initial 2004-11-24 01:04:44 +00:00
courses.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
customer.rb Initial 2004-11-24 01:04:44 +00:00
customers.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
default.rb Initial 2004-11-24 01:04:44 +00:00
developer.rb Added respondence to *_before_type_cast for all attributes to return their string-state before they were type casted by the column type. Added use of *_before_type_cast for all input and text fields. 2004-12-19 11:25:55 +00:00
developers.yml Added respondence to *_before_type_cast for all attributes to return their string-state before they were type casted by the column type. Added use of *_before_type_cast for all input and text fields. 2004-12-19 11:25:55 +00:00
developers_projects.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
entrant.rb Initial 2004-11-24 01:04:44 +00:00
entrants.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
mixin.rb Added higher_item and lower_item as public methods for acts_as_list #342 [Tobias Luetke] 2004-12-19 13:01:47 +00:00
mixins.yml Fixed mixin test and fixtures to work with postgresql #353 [Scott Baron] 2004-12-22 14:14:45 +00:00
movie.rb Initial 2004-11-24 01:04:44 +00:00
movies.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
people.yml Added automated optimistic locking if the field lock_version is present #384 [Michael Koziarski] 2004-12-31 19:38:04 +00:00
person.rb Added automated optimistic locking if the field lock_version is present #384 [Michael Koziarski] 2004-12-31 19:38:04 +00:00
project.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
projects.yml Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ruby-lang.org/project/ruby-db2/) #386 [Maik Schmidt]. Converted all the fixtures to YAML style ones. 2005-01-01 19:22:16 +00:00
reply.rb Attempted to capture #286 in a unit test, but couldnt get it to fail 2004-12-12 18:12:57 +00:00
subscriber.rb Initial 2004-11-24 01:04:44 +00:00
topic.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
topics.yml Fixed a YAML fixture on time coming out as an integer #415 [Dan Peterson] 2005-01-02 23:31:13 +00:00