Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/trunk/activerecord/test/associations


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @8660 [8660] 01/18/08 07:30:42 bitsweat Move tests to cases
(edit) @8571 [8571] 01/05/08 14:58:28 bitsweat More thoroughly quote table names. Exposes some issues with sqlite2 …
(edit) @8570 [8570] 01/05/08 13:34:15 bitsweat * Continue evolution toward ActiveSupport::TestCase and friends. #10679
(edit) @8499 [8499] 12/28/07 05:42:12 bitsweat Ruby 1.9 compat: introduce instance_variable_names. Closes #10630
(edit) @8481 [8481] 12/22/07 11:26:03 bitsweat Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized …
(edit) @8456 [8456] 12/21/07 01:49:01 bitsweat Eager belongs_to :include infers the foreign key from the association name …
(edit) @8376 [8376] 12/11/07 20:08:30 rick Ensure that the :uniq option for has_many :through associations retains …
(edit) @8353 [8353] 12/10/07 01:37:11 bitsweat Remove empty ar_joins_test
(edit) @8315 [8315] 12/05/07 22:06:26 bitsweat Fix eager association test. Closes #10381 [alexey]
(edit) @8273 [8273] 12/05/07 02:50:18 david Try again
(edit) @8270 [8270] 12/05/07 02:30:30 david Fix that options[:from] table names should never be quoted [DHH]
(edit) @8128 [8128] 11/11/07 01:03:43 rick Fix HasManyThrough Association so it uses :conditions on the HasMany …
(edit) @8126 [8126] 11/10/07 21:33:13 nzkoz Ensure that column names are quoted. Closes #10134 [wesley.moxam]
(edit) @8109 [8109] 11/07/07 15:07:39 david Address shortcomings of changeset [8054] [protocool]
(edit) @8054 [8054] 10/29/07 21:39:52 bitsweat Introduce finder :joins with associations. Same :include syntax but with …
(edit) @8043 [8043] 10/27/07 18:51:32 bitsweat Fix has_many :through delete with custom foreign keys. Closes #6466.
(edit) @8036 [8036] 10/26/07 05:56:46 bitsweat Foxy fixtures. Adapter#disable_referential_integrity. Closes #9981.
(edit) @8006 [8006] 10/23/07 18:34:01 marcel Limited eager loading no longer ignores scoped :order. Closes #9561
(edit) @7935 [7935] 10/16/07 05:07:58 bitsweat Refactor association create and build so before & after callbacks behave …
(edit) @7913 [7913] 10/15/07 08:09:04 bitsweat Alias association #build to #new so it behaves predictably. Closes #8787.
(edit) @7897 [7897] 10/15/07 04:14:10 bitsweat Uncomment test for join model method_missing. Closes #8707 [Giles Bowkett, …
(edit) @7692 [7692] 09/30/07 06:47:20 rick Make size for has_many :through use counter cache if it exists. Closes …
(edit) @7504 [7504] 09/17/07 21:19:44 bitsweat Associations macros accept extension blocks alongside modules. Closes …
(edit) @7494 [7494] 09/15/07 23:50:12 bitsweat Eager loading respects explicit :joins. Closes #9496.
(edit) @7472 [7472] 09/13/07 23:21:14 bitsweat OpenBase: update for new lib and latest Rails. Support migrations. Closes …
(edit) @7460 [7460] 09/11/07 06:47:27 bitsweat Kill lingering acts
(edit) @7454 [7454] 09/11/07 03:25:59 david Moved acts_as_tree into a plugin of the same name on the official Rails …
(edit) @7326 [7326] 08/16/07 04:37:31 nzkoz Don't clobber :includes passed to count on has_many association. Closes …
(edit) @7325 [7325] 08/16/07 04:36:55 nzkoz Make sure has_many associations honour :include when counting. Closes …
(edit) @7237 [7237] 07/25/07 03:09:21 rick Ensure that has_many :through associations use a count query instead of …
(edit) @7199 [7199] 07/20/07 00:10:06 rick Fix #count on a has_many :through association so that it recognizes the …
(edit) @7182 [7182] 07/11/07 23:54:43 nzkoz Make create! on a has_many :through association return the association …
(edit) @7119 [7119] 06/25/07 22:42:19 bitsweat Fix polymorphic has_one associations declared in an abstract class. Closes …
(edit) @7081 [7081] 06/22/07 17:36:20 bitsweat Update tests' use of fixtures for the new collections api. Closes #8726.
(edit) @6997 [6997] 06/11/07 07:15:59 bitsweat Remove deprecated push_with_attributes.
(edit) @6408 [6408] 03/13/07 05:23:18 rick Allow a polymorphic :source for has_many :through associations. Closes …
(edit) @6406 [6406] 03/13/07 05:16:22 rick forgot to add tests for #7044
(edit) @6336 [6336] 03/05/07 11:34:39 bitsweat Fix has_many :through << with custom foreign keys. Closes #6466, #7153.
(edit) @5887 [5887] 01/12/07 05:14:55 bitsweat PostgreSQL: use a subselect to correctly perform eager finds with :limit …
(edit) @5839 [5839] 01/05/07 00:12:06 nzkoz Sybase adapter fixes. Closes #6926 [jsheets]
(edit) @5384 [5384] 11/01/06 20:28:48 bitsweat Oracle: resolve test failures, use prefetched primary key for inserts, …
(edit) @5305 [5305] 10/15/06 16:37:11 rick Fix has_many :through to add the appropriate conditions when going through …
(edit) @5284 [5284] 10/11/06 14:02:24 rick Restore eager condition interpolation, document it's differences [Rick]
(edit) @5267 [5267] 10/09/06 03:21:52 rick Add #delete support to has_many :through associations. Closes #6049
(edit) @5264 [5264] 10/09/06 02:46:57 rick Removes the ability for eager loaded conditions to be interpolated, since …
(edit) @5230 [5230] 10/08/06 06:45:32 bitsweat The has_many create method works with polymorphic associations. Closes …
(add) @5181 [5181] 09/25/06 06:38:55 bitsweat organize associations tests
Note: See TracRevisionLog for help on using the revision log.