Sha256: 162529ea0775141b6eea9fed9c4d6bf6ff9a43d187481777716698e3aa557c44
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 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.order.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veritas-optimizer-0.0.4 | spec/unit/veritas/optimizer/algebra/rename/reverse_operand/optimizable_spec.rb |