aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_as.rb
blob: 8585fbc963dbb5238dab0a6e65d3f007245b99c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'helper'

module Arel
  module Nodes
    describe 'As' do
      describe '#as' do
        it 'makes an AS node' do
          attr = Table.new(:users)[:id]
          as = attr.as(Arel.sql('foo'))
          assert_equal attr, as.left
          assert_equal 'foo', as.right
        end
      end
    end
  end
end