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