Sha256: 405de6b608999209da7a3fd3db54297be6d24bb6618d47b1cb39fc3002b25968
Contents?: true
Size: 429 Bytes
Versions: 76
Compression:
Stored size: 429 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' describe LHS::Collection do let(:data) do ['ROLE_USER', 'ROLE_LOCALCH_ACCOUNT'] end let(:collection) do LHS::Data.new(LHS::Data.new(data)) end context '#respond_to?' do # In this case raw collection is an Array implementing first it 'forwards calls to raw collection' do expect(collection.respond_to?(:first)).to be(true) end end end
Version data entries
76 entries across 76 versions & 1 rubygems