Sha256: a1460279032a394a0408d726cb51f9285b407184987ef06ecddb8cf056e84c52
Contents?: true
Size: 426 Bytes
Versions: 12
Compression:
Stored size: 426 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' describe DHS::Collection do let(:data) do %w[ROLE_USER ROLE_LOCALCH_ACCOUNT] end let(:collection) do DHS::Data.new(DHS::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
12 entries across 12 versions & 1 rubygems