Sha256: 1c9d7b154a12d07bbcbf0416fe510f212494368e84f007d80079af454e99f6f3

Contents?: true

Size: 1.72 KB

Versions: 5

Compression:

Stored size: 1.72 KB

Contents

require 'spec_helper'

if !ENV['SKIP_NONRAILS_TESTS']
  require 'will_paginate/sequel'
  require File.expand_path('../sequel_test_connector', __FILE__)
  sequel_loaded = true
else
  sequel_loaded = false
end

describe Sequel::Dataset::Pagination, 'extension' do
  
  class Car < Sequel::Model
  end

  it "should have the #paginate method" do
    Car.should respond_to(:paginate)
  end

  it "should NOT have the #paginate_by_sql method" do
    Car.should_not respond_to(:paginate_by_sql)
  end

  describe 'pagination' do
    before(:all) do
      Car.create(:name => 'Shelby', :notes => "Man's best friend")
      Car.create(:name => 'Aston Martin', :notes => "Woman's best friend")
      Car.create(:name => 'Corvette', :notes => 'King of the Jungle')
    end

    it "should imitate WillPaginate::Collection" do
      result = Car.paginate(1, 2)
      
      result.should_not be_empty
      result.size.should == 2
      result.length.should == 2
      result.total_entries.should == 3
      result.total_pages.should == 2
      result.per_page.should == 2
      result.current_page.should == 1
    end
    
    it "should perform" do
      Car.paginate(1, 2).all.should == [Car[1], Car[2]]
    end

    it "should be empty" do
      result = Car.paginate(3, 2)
      result.should be_empty
    end
    
    it "should perform with #select and #order" do
      result = Car.select("name as foo".lit).order(:name).paginate(1, 2).all
      result.size.should == 2
      result.first.values[:foo].should == "Aston Martin"
    end

    it "should perform with #filter" do
      results = Car.filter(:name => 'Shelby').paginate(1, 2).all
      results.size.should == 1
      results.first.should == Car.find(:name => 'Shelby')
    end
  end

end if sequel_loaded

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
will_paginate-3.2.1 spec/finders/sequel_spec.rb
will_paginate-3.2.0 spec/finders/sequel_spec.rb
will_paginate-3.1.8 spec/finders/sequel_spec.rb
will_paginate-3.1.7 spec/finders/sequel_spec.rb
will_paginate-3.1.6 spec/finders/sequel_spec.rb