Sha256: 73d62185a4c9e017c618e3084ddee03135663a6021600a43540206b04fea0e8d
Contents?: true
Size: 416 Bytes
Versions: 2
Compression:
Stored size: 416 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Unary::EmptyOperand, '#optimize' do subject { object.optimize } let(:operand) { Relation::Empty.new([[:id, Integer]]) } let(:relation) { operand.rename({}) } let(:object) { described_class.new(relation) } before do expect(object).to be_optimizable end it { should be(operand) } end
Version data entries
2 entries across 2 versions & 1 rubygems