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

describe "Pathname#realpath" do

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

end