Sha256: 73c269e48b6314db8a29af6546b19d61293d95b51c939d26cf4c4739a10d40b5

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 KB

Contents

require 'rails_helper'

describe LHS::Data do
  let(:json) do
    load_json(:feedbacks)
  end

  let(:data) do
    LHS::Data.new(json, nil, Record)
  end

  before do
    class Record < LHS::Record
      endpoint '{+datastore}/v2/data'
    end
  end

  context 'empty collection' do
    let(:collection) do
      LHS::Data.new({ items: [] }, nil, Record)
    end

    it 'provides correct count and length' do
      expect(collection.count).to eq 0
      expect(collection.length).to eq 0
    end

    it 'returns an empty array or map' do
      expect(collection.map { |x| }).to eq []
    end
  end

  context 'collections' do
    it 'forwards calls to the collection' do
      expect(data.count).to be_kind_of Integer
      expect(data[0]).to be_kind_of LHS::Data
      expect(data.sample).to be_kind_of LHS::Data
    end

    it 'provides a total method to get the number of total records' do
      expect(data.total).to be_kind_of Integer
    end
  end

  context 'collections from arrays' do
    let(:data) do
      LHS::Data.new([1, 2, 3, 4])
    end

    it 'uses collection as proxy for arrays' do
      expect(data._proxy).to be_kind_of LHS::Collection
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lhs-15.4.1 spec/data/collection_spec.rb
lhs-15.4.0 spec/data/collection_spec.rb
lhs-15.4.0.pre.hasone.1 spec/data/collection_spec.rb
lhs-15.3.3 spec/data/collection_spec.rb
lhs-15.3.3.pre.fixoptions.1 spec/data/collection_spec.rb
lhs-15.3.2 spec/data/collection_spec.rb