summaryrefslogtreecommitdiff
path: root/spec/ruby/library/pathname/case_compare_spec.rb
blob: 0cf799dd235e3dcfe17470872af7a9e74002279d (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require 'pathname'

describe "Pathname#===" do
  it "is an alias of Pathname#==" do
    Pathname.instance_method(:===).should == Pathname.instance_method(:==)
  end
end