Sha256: cbb01e4d597e3bb8f8e306371a1fa83492f601e69076fbc6bd6123908092dcaa

Contents?: true

Size: 555 Bytes

Versions: 1

Compression:

Stored size: 555 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Relation::Operation::Limit, '#hash' do
  subject { object.hash }

  let(:relation) { Relation.new([ [ :id, Integer ] ], [ [ 1 ], [ 2 ], [ 3 ] ]) }
  let(:operand)  { relation.order                                              }
  let(:limit)    { 1                                                           }
  let(:object)   { described_class.new(operand, limit)                         }

  it_should_behave_like 'a hash method'

  it { should == described_class.hash ^ operand.hash ^ limit.hash }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
veritas-0.0.4 spec/unit/veritas/relation/operation/limit/hash_spec.rb