From 7fc339059cbace0af8f8dbfb5c68db3f5dffd5a3 Mon Sep 17 00:00:00 2001 From: PikachuEXE Date: Wed, 30 Jan 2013 12:55:37 +0800 Subject: + Add test for auto timestamps update of both old & new parent records --- activerecord/test/fixtures/toys.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activerecord/test/fixtures/toys.yml') diff --git a/activerecord/test/fixtures/toys.yml b/activerecord/test/fixtures/toys.yml index 037e335e0a..07ed75e98e 100644 --- a/activerecord/test/fixtures/toys.yml +++ b/activerecord/test/fixtures/toys.yml @@ -2,3 +2,7 @@ bone: toy_id: 1 name: Bone pet_id: 1 +doll: + toy_id: 2 + name: Doll + pet_id: 2 -- cgit v1.2.3 From 812469943cc6eddc132d137a0d5929b2c5d0346f Mon Sep 17 00:00:00 2001 From: Neeraj Singh Date: Wed, 3 Apr 2013 23:39:09 -0400 Subject: has_many through obeys order on through association fixes #10016 --- activerecord/test/fixtures/toys.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/fixtures/toys.yml') diff --git a/activerecord/test/fixtures/toys.yml b/activerecord/test/fixtures/toys.yml index 07ed75e98e..ae9044ec62 100644 --- a/activerecord/test/fixtures/toys.yml +++ b/activerecord/test/fixtures/toys.yml @@ -2,7 +2,13 @@ bone: toy_id: 1 name: Bone pet_id: 1 + doll: toy_id: 2 name: Doll pet_id: 2 + +bulbuli: + toy_id: 3 + name: Bulbuli + pet_id: 4 -- cgit v1.2.3