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