Sha256: 9a75887a4b97099d46f611da95c9a74686db94f2b9314ea5e6c02b54ef45422a

Contents?: true

Size: 933 Bytes

Versions: 4

Compression:

Stored size: 933 Bytes

Contents

require 'spec_helper'

describe ROM::Relation::Loaded do
  include_context 'no container'
  include_context 'users and tasks'

  subject(:users) { ROM::Relation::Loaded.new(users_relation) }

  describe '#each' do
    it 'yields tuples from relation' do
      result = []
      users.each do |tuple|
        result << tuple
      end
      expect(result).to match_array([
        { name: 'Jane', email: 'jane@doe.org' },
        { name: 'Joe', email: 'joe@doe.org' }
      ])
    end

    it 'returns enumerator when block is not provided' do
      expect(users.each.to_a).to eql(users.collection.to_a)
    end
  end

  describe '#to_ary' do
    it 'coerces to an array' do
      expect(users.to_ary).to match_array([
        { name: 'Jane', email: 'jane@doe.org' },
        { name: 'Joe', email: 'joe@doe.org' }
      ])
    end
  end

  it_behaves_like 'a relation that returns one tuple' do
    let(:relation) { users }
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rom-1.0.0 spec/unit/rom/relation/loaded_spec.rb
rom-1.0.0.rc1 spec/unit/rom/relation/loaded_spec.rb
rom-1.0.0.beta2 spec/unit/rom/relation/loaded_spec.rb
rom-1.0.0.beta1 spec/unit/rom/relation/loaded_spec.rb