Sha256: 6ae85f117bc1c2a238c78a6b2c4b7617c3a7e44cbe0d5f0874336dc8b299fad5
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe CouchRest::Mixins::WillPaginate do class SomeDoc < CouchRest::ExtendedDocument use_database SPEC_COUCH property :name paginated_view_by :name end it "should respond to paginated_view_by class method" do SomeDoc.should respond_to :paginated_view_by end it "should call view_by method when paginated view_by included" do SomeDoc.should_receive(:view_by) class SomeDoc paginated_view_by :name end end it "should respond to the view and paginated method" do SomeDoc.should respond_to :paginate_by_name # @some_doc.stub(:id).and_return(123) end describe "performing pagination with lots of documents" do before(:each) do reset_test_db! 20.times do |i| txt = "%02d" % i SomeDoc.new(:name => "document #{txt}").save end end it "should produce a will paginate collection" do docs = SomeDoc.paginate_by_name( :page => 1, :per_page => 5 ) docs.class.should eql(::WillPaginate::Collection) docs.total_pages.should eql(4) docs.first.name.should eql('document 00') docs.length.should eql(5) docs.last.name.should eql('document 04') end it "should produce second page from paginate collection" do docs = SomeDoc.paginate_by_name( :page => 2, :per_page => 5 ) docs.first.name.should eql('document 05') docs.length.should eql(5) docs.last.name.should eql('document 09') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
will_paginate_couchrest-0.1.0 | spec/will_paginate_couchrest_spec.rb |