Sha256: fea3511186d6a1ff85c8f057e1ef2a867ef2109c6b4365df39515c77ba626837
Contents?: true
Size: 398 Bytes
Versions: 26
Compression:
Stored size: 398 Bytes
Contents
require 'rails_helper' describe LHS::Collection do let(:data) { ['ROLE_USER', 'ROLE_LOCALCH_ACCOUNT'] } let(:collection){ described_class.new(LHS::Data.new(data)) } 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
26 entries across 26 versions & 1 rubygems