mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
10 lines
262 B
Ruby
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
|