Sha256: f2797adb20b42c003a884839d2d3f493b2557573ec4d303053d8b65681e2b965

Contents?: true

Size: 1.87 KB

Versions: 11

Compression:

Stored size: 1.87 KB

Contents

require 'spec_helper'

describe Virtus::AttributeSet, '#each' do
  let(:name)       { :name                                   }
  let(:attribute)  { Virtus::Attribute.build(String, :name => :name) }
  let(:attributes) { [ attribute ]                           }
  let(:parent)     { described_class.new                     }
  let(:object)     { described_class.new(parent, attributes) }
  let(:yields)     { Set[]                                   }

  context 'with no block' do
    subject { object.each }

    it { should be_instance_of(to_enum.class) }

    it 'yields the expected attributes' do
      subject.to_a.should eql(object.to_a)
    end
  end

  context 'with a block' do
    subject { object.each { |attribute| yields << attribute } }

    context 'when the parent has no attributes' do
      it { should equal(object) }

      it 'yields the expected attributes' do
        expect { subject }.to change { yields.dup }.
          from(Set[]).
          to(attributes.to_set)
      end
    end

    context 'when the parent has attributes that are not duplicates' do
      let(:parent_attribute) { Virtus::Attribute.build(String, :name => :parent_name) }
      let(:parent)           { described_class.new([ parent_attribute ])       }

      it { should equal(object) }

      it 'yields the expected attributes' do
        expect { subject }.to change { yields.dup }.
          from(Set[]).
          to(Set[ attribute, parent_attribute ])
      end
    end

    context 'when the parent has attributes that are duplicates' do
      let(:parent_attribute) { Virtus::Attribute.build(String, :name => name) }
      let(:parent)           { described_class.new([ parent_attribute ]) }

      it { should equal(object) }

      it 'yields the expected attributes' do
        expect { subject }.to change { yields.dup }.
          from(Set[]).
          to(Set[ attribute ])
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
virtus-1.0.2 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.1 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.rc2 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.rc1 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta8 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta7 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta6 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta5 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta4 spec/unit/virtus/attribute_set/each_spec.rb
virtus-1.0.0.beta3 spec/unit/virtus/attribute_set/each_spec.rb