summaryrefslogtreecommitdiff
path: root/spec/ruby/library/pathname/realdirpath_spec.rb
blob: a9e44e354e2dd76b0e0c2ea506ab896526d5cb28 (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
require 'pathname'

describe "Pathname#realdirpath" do

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

end