Sha256: 6aeba859306ad1948f6befec8a592864d76751e4850a79c5b0de4d695c47354f

Contents?: true

Size: 979 Bytes

Versions: 8

Compression:

Stored size: 979 Bytes

Contents

require 'fake_sqs/collection_view'

RSpec.describe FakeSQS::CollectionView do

  def wrap(collection)
    FakeSQS::CollectionView.new(collection)
  end

  it 'should correctly wrap an array' do
    array = %w{one two three four}
    view = wrap(array)
    expect(view[0]).to eq 'one'
    expect(view[1]).to eq 'two'
    expect(view[2]).to eq 'three'
    expect(view[3]).to eq 'four'
  end

  it 'should correctly wrap a hash' do
    hash = { :one => 1, :two => 2, :three => 3 }
    view = wrap(hash)
    expect(view[:one]).to eq 1
    expect(view[:two]).to eq 2
    expect(view[:three]).to eq 3
  end

  it 'should respond to empty correctly' do
    expect(wrap([])).to be_empty
    expect(wrap({'one' => 1})).to_not be_empty
  end

  it 'should be enumerable' do
    result = wrap([1, 2, 3]).map { |i| i * i }
    expect(result).to eq [1, 4, 9]
  end

  it 'should respond to size/length' do
    expect(wrap([1, 2, 3]).size).to eq 3
    expect(wrap([]).size).to eq 0
  end

end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fake_servicebus-0.0.2 spec/unit/collection_view_spec.rb
fake_sqs-0.4.3 spec/unit/collection_view_spec.rb
fake_sqs-0.4.2 spec/unit/collection_view_spec.rb
fake_sqs-0.4.1 spec/unit/collection_view_spec.rb
fake_sqs-0.4.0 spec/unit/collection_view_spec.rb
fake_sqs-0.3.1 spec/unit/collection_view_spec.rb
fake_sqs-0.3.0 spec/unit/collection_view_spec.rb
fake_sqs-0.2.0 spec/unit/collection_view_spec.rb