aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/predicates/in_spec.rb
blob: 54a6d6c7da459a8ca38442444b8d696ee97af20c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'

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