Sha256: 82146d65caa8c1373f53dc2c0780654c7613bdde1d0edd3931156184f626f6d9
Contents?: true
Size: 315 Bytes
Versions: 22
Compression:
Stored size: 315 Bytes
Contents
require 'spec_helper' describe 'String#remove' do it 'removes all occurrences of a pattern' do expect('Ladies Night'.remove(/Ladies /)).to eq('Night') end end describe 'String#remove!' do it 'removes all occurrences of a pattern' do expect('Ladies Night'.remove(/Ladies /)).to eq('Night') end end
Version data entries
22 entries across 19 versions & 6 rubygems