Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 87a39af

Browse files
authoredDec 5, 2022
Add test for counting group by
1 parent edd4688 commit 87a39af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎test/recordset_test.rb

+6
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,10 @@ class GearedPagination::RecordsetTest < ActiveSupport::TestCase
7676
recordset = GearedPagination::Recordset.new(select_scoped_records, per_page: [ 10, 15, 20 ])
7777
assert_equal Recording.all.count, recordset.records_count
7878
end
79+
80+
test "records count for group by" do
81+
select_scoped_records = Recording.all.select(:id, :number).group(:id)
82+
recordset = GearedPagination::Recordset.new(select_scoped_records, per_page: [ 10, 15, 20 ])
83+
assert_equal Recording.all.count, recordset.records_count
84+
end
7985
end

0 commit comments

Comments
 (0)
Please sign in to comment.