Sha256: 395f3564276324b5fdd0bb4f9524419f69d8421fc71a1ed854cf68f9da0092f1
Contents?: true
Size: 302 Bytes
Versions: 30
Compression:
Stored size: 302 Bytes
Contents
require 'spec_helper' describe 'String#format' do it 'behaves like String#%' do expect('%s %s'.format %w(James Bond)).to eq('%s %s' % %w(James Bond)) end it 'behaves like Kernel#sprintf' do expect('%s %s'.format %w(James Bond)) .to eq(sprintf('%s %s', 'James', 'Bond')) end end
Version data entries
30 entries across 27 versions & 6 rubygems