aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/pathname/hash_spec.rb
blob: a0bfe811f64f74f59d94050ed7ab0ac3170fa52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'
require 'pathname'

describe "Pathname#hash" do

  it "is equal to the hash of the pathname" do
    Pathname.new('/usr/local/bin/').hash.should == '/usr/local/bin/'.hash
  end

  it "is not equal the hash of a different pathname" do
    Pathname.new('/usr/local/bin/').hash.should_not == '/usr/bin/'.hash
  end

end