summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/percent_spec.rb
blob: 2ddcab7907c4bce8fb19c282aa62fbb893319086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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