aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/algebra/unit/predicates/in_spec.rb
blob: a8a15ce4e38bf0cbfd7aa9e570da1f88d61f097d (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