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

describe "Pathname#realdirpath" do

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

end