1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/core/file/inspect_spec.rb

18 lines
345 B
Ruby
Raw Normal View History

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