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

module Arel
  describe Take do
    before do
      @relation = Table.new(:users)
      @taken = 4
    end
  end
end