Sha256: 1d1047a0a95b85d6d03812831fff11a721fa96986623071d17f904aaaed768ba
Contents?: true
Size: 664 Bytes
Versions: 33
Compression:
Stored size: 664 Bytes
Contents
require 'spec/spec_helper' describe ThinkingSphinx::Collection do it "should behave like WillPaginate::Collection" do ThinkingSphinx::Collection.instance_methods.should include("previous_page") ThinkingSphinx::Collection.instance_methods.should include("next_page") ThinkingSphinx::Collection.instance_methods.should include("current_page") ThinkingSphinx::Collection.instance_methods.should include("total_pages") ThinkingSphinx::Collection.instance_methods.should include("total_entries") ThinkingSphinx::Collection.instance_methods.should include("offset") ThinkingSphinx::Collection.ancestors.should include(Array) end end
Version data entries
33 entries across 33 versions & 6 rubygems