File: format_spec.rb

package info (click to toggle)
ruby-powerpack 0.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: ruby: 799; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
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