Sha256: 72df2149dc18983c292c5068f72dd214f2a2e86f124a96569f2d0400365d1c0f
Contents?: true
Size: 479 Bytes
Versions: 2
Compression:
Stored size: 479 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Rename::EmptyOperand, '#optimize' do subject { object.optimize } let(:operand) { Relation::Empty.new([ [ :id, Integer ] ]) } 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::Empty) } its(:header) { should equal(relation.header) } end
Version data entries
2 entries across 2 versions & 1 rubygems