aboutsummaryrefslogblamecommitdiffstats
path: root/test/visitors/test_postgres.rb
blob: 618745c35d1db8ad7c66ade2ad6d90802c2cafdb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                








                                              
                                                        





                    
require 'helper'

module Arel
  module Visitors
    describe 'the postgres visitor' do
      before do
        @visitor = PostgreSQL.new Table.engine
      end

      it 'should produce a lock value' do
        @visitor.accept(Nodes::Lock.new).must_be_like %{
          FOR UPDATE
        }
      end
    end
  end
end