Sha256: c153a0b6c4e39540a5f8225e807fef6a23974cb18100b766098ce852fd38dce6

Contents?: true

Size: 525 Bytes

Versions: 5

Compression:

Stored size: 525 Bytes

Contents

require 'pathname'

describe "Pathname#relative?" do

  it "returns false for the root directory" do
    Pathname.new('/').relative?.should == false
  end

  it "returns false for a dir starting with a slash" do
    Pathname.new('/usr/local/bin').relative?.should == false
  end

  it "returns true for a dir not starting with a slash" do
    Pathname.new('fish').relative?.should == true
  end

  it "returns true for a dir not starting with a slash" do
    Pathname.new('fish/dog/cow').relative?.should == true
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubysl-pathname-2.3 spec/relative_spec.rb
rubysl-pathname-2.2 spec/relative_spec.rb
rubysl-pathname-2.1.0 spec/relative_spec.rb
rubysl-pathname-1.0.0 spec/relative_spec.rb
rubysl-pathname-2.0.0 spec/relative_spec.rb