Sha256: 26f59cfb20f341c4968f65c3cee7b4ded820105491606c48ecd3e89fd8830432
Contents?: true
Size: 397 Bytes
Versions: 3
Compression:
Stored size: 397 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lhs-3.0.3 | spec/collection/respond_to_spec.rb |
lhs-3.0.2 | spec/collection/respond_to_spec.rb |
lhs-3.0.1 | spec/collection/respond_to_spec.rb |