Sha256: e642e4de39a75d7ac3a90fb45baa4327e3343aab162ca78c740826e455764a15
Contents?: true
Size: 618 Bytes
Versions: 52
Compression:
Stored size: 618 Bytes
Contents
describe :dir_pwd, :shared => true do =begin it "returns the current working directory" do # On ubuntu gutsy, for example, /bin/pwd does not # understand -P. With just `pwd -P`, /bin/pwd is run. # The following uses inode rather than file names to account for # case insensitive file systems like default OS/X file systems platform_is_not :windows do File.stat(Dir.send(@method)).ino.should == File.stat(`/bin/sh -c "pwd -P"`.chomp).ino end platform_is :windows do File.stat(Dir.send(@method)).ino.should == File.stat(File.expand_path(`cd`.chomp)).ino end end =end end
Version data entries
52 entries across 52 versions & 2 rubygems