summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/printf_spec.rb
blob: 95ce3589c53c680036dfcf847b4c09aa70d64c87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative '../../spec_helper'
require_relative '../kernel/shared/sprintf'

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