aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/percent_spec.rb
blob: e3460522b194b8e169c8fffac66ae297c85e5587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../spec_helper'
require_relative '../kernel/shared/sprintf'
require_relative '../kernel/shared/sprintf_encoding'

describe "String#%" do
  it_behaves_like :kernel_sprintf, -> format, *args {
    format % args
  }

  it_behaves_like :kernel_sprintf_encoding, -> format, *args {
    format % args
  }
end