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

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