Sha256: 1437b897b5772c1d74dac0b64c5560302c75c828a2882c9aad3282f1d20d76f0

Contents?: true

Size: 299 Bytes

Versions: 76

Compression:

Stored size: 299 Bytes

Contents

# frozen_string_literal: true

require 'rails_helper'

describe LHS::Record do
  let(:record) do
    LHS::Record.new(LHS::Data.new(['cat', 'dog']))
  end

  context 'select' do
    it 'works with select' do
      expect(
        record.select { |x| x }.join
      ).to eq 'catdog'
    end
  end
end

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
lhs-26.2.0 spec/record/select_spec.rb
lhs-26.1.0 spec/record/select_spec.rb
lhs-26.0.1 spec/record/select_spec.rb
lhs-26.0.0 spec/record/select_spec.rb
lhs-25.2.0 spec/record/select_spec.rb
lhs-25.1.0 spec/record/select_spec.rb
lhs-25.0.4 spec/record/select_spec.rb
lhs-25.0.3 spec/record/select_spec.rb
lhs-25.0.2 spec/record/select_spec.rb
lhs-25.0.1 spec/record/select_spec.rb
lhs-25.0.0 spec/record/select_spec.rb
lhs-24.1.2 spec/record/select_spec.rb
lhs-24.1.1 spec/record/select_spec.rb
lhs-24.1.0 spec/record/select_spec.rb
lhs-24.1.0.pre.2 spec/record/select_spec.rb
lhs-24.1.0.pre.1 spec/record/select_spec.rb
lhs-24.0.0 spec/record/select_spec.rb
lhs-23.0.2 spec/record/select_spec.rb
lhs-23.0.1 spec/record/select_spec.rb
lhs-23.0.0 spec/record/select_spec.rb