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

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