aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_grouping.rb
blob: 3f84ac301e36a3d9d59cc6c1b44bb47cd5e00cc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'helper'

module Arel
  module Nodes
    describe 'Grouping' do
      it 'should create Equality nodes' do
        grouping = Grouping.new('foo')
        grouping.eq('foo').to_sql.must_be_like %q{('foo') = 'foo'}
      end
    end
  end
end