Sha256: a46de3ef788d3334809799f2e6297aa12bb286df872d533909e59992cf6c5248

Contents?: true

Size: 1.06 KB

Versions: 8

Compression:

Stored size: 1.06 KB

Contents

require 'spec_helper'

describe Searchlogic::NamedScopes::Ordering do
  it "should have ascending" do
    %w(bjohnson thunt).each { |username| User.create(:username => username) }
    User.ascend_by_username.all.should == User.all(:order => "username ASC")
  end
  
  it "should have descending" do
    %w(bjohnson thunt).each { |username| User.create(:username => username) }
    User.descend_by_username.all.should == User.all(:order => "username DESC")
  end
  
  it "should have order" do
    User.order("ascend_by_username").proxy_options.should == User.ascend_by_username.proxy_options
  end

  it "should have order by custom scope" do
    User.column_names.should_not include("custom")
    %w(bjohnson thunt fisons).each { |username| User.create(:username => username) }
    User.named_scope(:ascend_by_custom, :order => "username ASC, name DESC")
    User.order("ascend_by_custom").proxy_options.should == User.ascend_by_custom.proxy_options
  end
  
  it "should have priorty to columns over conflicting association columns" do
    Company.ascend_by_users_count
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
searchlogic-2.5.10 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.9 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.8 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.7 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.6 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.5 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.4 spec/searchlogic/named_scopes/ordering_spec.rb
searchlogic-2.5.3 spec/searchlogic/named_scopes/ordering_spec.rb