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

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