rails/activerecord/test/models/car.rb
Neeraj Singh 9401fa0b9c expanding the test to include both type of order declaration
while declaring default_scope

Also added test for unscoped using block style with four different
combinations

Signed-off-by: José Valim <jose.valim@gmail.com>
2010-09-18 20:49:19 +02:00

23 lines
441 B
Ruby

class Car < ActiveRecord::Base
has_many :bulbs
has_many :tyres
has_many :engines
has_many :wheels, :as => :wheelable
scope :incl_tyres, includes(:tyres)
scope :incl_engines, includes(:engines)
scope :order_using_new_style, order('name asc')
scope :order_using_old_style, :order => 'name asc'
end
class CoolCar < Car
default_scope :order => 'name desc'
end
class FastCar < Car
default_scope order('name desc')
end