summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/sprintf_spec.rb
blob: 7adf71be76f0039f0cbdcfe44e52e2f17401c2de (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