mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
18 lines
345 B
Ruby
18 lines
345 B
Ruby
![]() |
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe "File#inspect" do
|
||
|
before :each do
|
||
|
@name = tmp("file_inspect.txt")
|
||
|
@file = File.open @name, "w"
|
||
|
end
|
||
|
|
||
|
after :each do
|
||
|
@file.close unless @file.closed?
|
||
|
rm_r @name
|
||
|
end
|
||
|
|
||
|
it "returns a String" do
|
||
|
@file.inspect.should be_an_instance_of(String)
|
||
|
end
|
||
|
end
|