summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/puts_spec.rb
blob: 6eb38e8fcfdec417e406cc8d1e4348e3d4ed017f (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
25
26
27
28
29
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#puts" do
  before :each do
    @stdout = $stdout
    @name = tmp("kernel_puts.txt")
    $stdout = new_io @name
  end

  after :each do
    $stdout.close
    $stdout = @stdout
    rm_r @name
  end

  it "is a private method" do
    Kernel.should have_private_instance_method(:puts)
  end

  it "delegates to $stdout.puts" do
    $stdout.should_receive(:puts).with(:arg)
    puts :arg
  end
end

describe "Kernel.puts" do
  it "needs to be reviewed for spec completeness"
end