summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/sprintf_spec.rb
blob: 4aa8c2351f3059709c378a4ba24322051ef96809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/sprintf'
require_relative 'shared/sprintf_encoding'

describe "Kernel#sprintf" do
  it_behaves_like :kernel_sprintf, -> (format, *args) {
    sprintf(format, *args)
  }

  it_behaves_like :kernel_sprintf_encoding, -> (format, *args) {
    sprintf(format, *args)
  }
end

describe "Kernel.sprintf" do
  it_behaves_like :kernel_sprintf, -> (format, *args) {
    Kernel.sprintf(format, *args)
  }

  it_behaves_like :kernel_sprintf_encoding, -> (format, *args) {
    Kernel.sprintf(format, *args)
  }
end