aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/relations/group_spec.rb
blob: 58f9252356302472e9a38b172ea803ba45bcaaf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require File.join(File.dirname(__FILE__), '..', '..', '..', '..', 'spec_helper')

module Arel
  describe Group do
    before do
      @relation = Table.new(:users)
      @attribute = @relation[:id]
    end
  end
end