aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/pathname/realpath_spec.rb
blob: e1c9eb34ea51df2e418b38354dbae02760c399e8 (plain)
1
2
3
4
5
6
7
8
9
10
require File.expand_path('../../../spec_helper', __FILE__)
require 'pathname'

describe "Pathname#realpath" do

  it "returns a Pathname" do
    Pathname.pwd.realpath.should be_an_instance_of(Pathname)
  end

end