Sha256: 1b005b269d07e588360fb20d8b8d5497a8ec73464b936ac5561527ae58c83038
Contents?: true
Size: 742 Bytes
Versions: 1
Compression:
Stored size: 742 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Rename::ReverseOperand, '#optimize' do subject { object.optimize } let(:base) { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ].each) } let(:limit) { base.order.take(2) } let(:operand) { limit.rename({}).reverse } let(:relation) { operand.rename(:id => :other_id) } let(:object) { described_class.new(relation) } before do object.should be_optimizable end it { should be_kind_of(Relation::Operation::Reverse) } its(:operand) { should eql(limit.rename(:id => :other_id)) } its(:directions) { should == [ relation[:other_id].desc ] } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veritas-optimizer-0.0.4 | spec/unit/veritas/optimizer/algebra/rename/reverse_operand/optimize_spec.rb |