Sha256: e14730e6eb5dcc991c86f4e4de6ce4ffd06b135bc7dfd80feabf515685b20ed8
Contents?: true
Size: 812 Bytes
Versions: 2
Compression:
Stored size: 812 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Rename::LimitOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([[:id, Integer]], LazyEnumerable.new([[1]])) } let(:aliases) { { id: :other_id } } let(:relation) { operand.rename(aliases) } let(:object) { described_class.new(relation) } before do expect(object.operation).to be_kind_of(Algebra::Rename) end context 'when the operand is an limit operation' do let(:operand) { base.sort_by { |r| r.id }.take(1) } it { should be(true) } end context 'when the operand is not an limit operation' do let(:operand) { base } it { should be(false) } end end
Version data entries
2 entries across 2 versions & 1 rubygems