Sha256: c889cbdd99eb57addffd653fb0ac5c91cfb72d44d5832e09cc1103c6530041a2
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Relation::Operation::Limit, '.new' do subject { object.new(relation, limit) } let(:original_relation) { Relation.new([[:id, Integer]], [[1], [2]]) } let(:object) { described_class } context 'with an ordered relation' do let(:relation) { original_relation.sort_by { |r| r.id } } let(:limit) { 1 } it { should be_instance_of(object) } end context 'with an ordered relation having an empty header' do let(:relation) { original_relation.sort_by { |r| r.id }.project([]) } let(:limit) { 1 } it { should be_instance_of(object) } end context 'without an ordered relation' do let(:relation) { original_relation } let(:limit) { 1 } specify { expect { subject }.to raise_error(OrderedRelationRequiredError, 'can only limit an ordered operand') } end context 'with an limit less than 0' do let(:relation) { original_relation.sort_by { |r| r.id } } let(:limit) { -1 } specify { expect { subject }.to raise_error(InvalidLimitError, 'limit must be greater than or equal to 0, but was -1') } end context 'with a nil limit' do let(:relation) { original_relation.sort_by { |r| r.id } } let(:limit) { nil } specify { expect { subject }.to raise_error(InvalidLimitError, 'limit must be greater than or equal to 0, but was nil') } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axiom-0.1.1 | spec/unit/axiom/relation/operation/limit/class_methods/new_spec.rb |