summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/printf_spec.rb
blob: 8423c010ab748e01a3c854451d4fe4d25ab1796c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../../kernel/shared/sprintf', __FILE__)

describe "File#printf" do
  it_behaves_like :kernel_sprintf, -> (format, *args) {
    begin
      @filename = tmp("printf.txt")

      File.open(@filename, "w", encoding: "utf-8") do |f|
        f.printf(format, *args)
      end

      File.read(@filename, encoding: "utf-8")
    ensure
      rm_r @filename
    end
  }
end