require 'test_helper' class RelationLastTest < ActiveSupport::TestCase setup do 10.times.each { |index| Model.create name: index } @relation = Model.page(5).per(2) end test "should have 5 pages" do assert_equal @relation.total_pages, 5 end test "current page should be 5" do assert_equal @relation.current_page, 5 end test "first page should be 1" do assert_equal @relation.first_page, 1 end test "should have previous page 4" do assert_equal @relation.previous_page, 4 end test "should not have next page" do assert_nil @relation.next_page end test "last page shuold be 5" do assert_equal @relation.last_page, 5 end test "should not be out of bounds" do assert !@relation.out_of_bounds? end end