Sha256: 6be2215feff404e2557ae5a0e5ee4ff2e7a4b5e5a9c7330f5aecee28cf0b27a5

Contents?: true

Size: 790 Bytes

Versions: 1

Compression:

Stored size: 790 Bytes

Contents

require 'rspec'
require_relative '../lib/totally_lazy'

describe 'Pair' do

  it 'should return the first item: first/key' do
    expect(pair(1, 2).first).to eq(1)
    expect(pair(1, 2).key).to eq(1)
  end

  it 'should return the second item: second/value' do
    expect(pair(1, 2).second).to eq(2)
    expect(pair(1, 2).value).to eq(2)
  end

  it 'should return sequence of values' do
    expect(pair(1,2).values).to eq(sequence(1,2))
  end

  it 'should convert to string' do
   expect(pair('apples',2).to_s).to eq('{"apples"=>2}')
  end

  it 'should convert to a sequence of pairs from a map' do
    expect(Pair.from_map({apples:'10'}).to_a).to eq(sequence(pair(:apples,'10')).to_a)
  end

  it 'should convert a pair to a map' do
    expect(pair(1,2).to_map).to eq({1=>2})
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
totally_lazy-0.0.3 spec/pair_spec.rb