Rails3: ActiveRecord includes(:) not working

class Customer < ActiveRecord::Base
has_many :projects
end

class Project < ActiveRecord::Base
has_many :works
belongs_to :customer

end