1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/pathname/inspect_spec.rb
2021-01-28 17:08:57 +01:00

10 lines
262 B
Ruby

require_relative '../../spec_helper'
require 'pathname'
describe "Pathname#inspect" do
it "returns a consistent String" do
result = Pathname.new('/tmp').inspect
result.should be_an_instance_of(String)
result.should == "#<Pathname:/tmp>"
end
end