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/pets.yml | 5 +++++ activerecord/test/fixtures/toys.yml | 6 ++++++ 2 files changed, 11 insertions(+) (limited to 'activerecord/test/fixtures') diff --git a/activerecord/test/fixtures/pets.yml b/activerecord/test/fixtures/pets.yml index a1601a53f0..2ec4f53e6d 100644 --- a/activerecord/test/fixtures/pets.yml +++ b/activerecord/test/fixtures/pets.yml @@ -12,3 +12,8 @@ mochi: pet_id: 3 name: mochi owner_id: 2 + +bulbul: + pet_id: 4 + name: bulbul + owner_id: 1 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