mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			565 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			565 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
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
 |