require 'test_helper' class RelationFirstTest < ActiveSupport::TestCase setup do 10.times.each { |index| Model.create name: index } @relation = Model.page(1).per(2) end test "should have 5 pages" do assert_equal @relation.total_pages, 5 end test "current page should be 1" do assert_equal @relation.current_page, 1 end test "first page should be 1" do assert_equal @relation.first_page, 1 end test "should have no previous page" do assert_nil @relation.previous_page end test "next page should be 2" do assert_equal @relation.next_page, 2 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