Sha256: 51e782dab9ab6c50335eb6a38949f5b8662375147be41b7c48f4962fa1c4994f

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

require 'spec_helper'
module Finitio
  describe Heading, "hash" do

    let(:r)      { Attribute.new(:r, intType)        }
    let(:b)      { Attribute.new(:b, intType)        }
    let(:maybe_r){ Attribute.new(:r, intType, false) }

    def heading(attributes, options = nil)
      Heading.new(attributes, options)
    end

    it 'returns same code on equal headings' do
      expect(heading([r]).hash).to eq(heading([r]).hash)
    end

    it 'does not put significance to attributes ordering' do
      expect(heading([r, b]).hash).to eq(heading([b, r]).hash)
    end

    it 'is good enough to distinguish between attribute obligations' do
      expect(heading([r]).hash).not_to eq(heading([maybe_r]).hash)
    end

    it 'is good enough to distinguish between extra allowance' do
      h1 = heading([r], allow_extra: true)
      h2 = heading([r], allow_extra: false)
      expect(h1.hash).not_to eq(h2.hash)
    end

    it 'is be good enough to distinguish between different headings' do
      a1 = Attribute.new(:r, intType)
      a2 = Attribute.new(:r, floatType)
      expect(heading([a1]).hash).not_to eq(heading([a2]).hash)
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
finitio-0.5.2 spec/heading/test_hash.rb
finitio-0.5.1 spec/heading/test_hash.rb
finitio-0.5.0 spec/heading/test_hash.rb