diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/pathname/test_pathname.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index fbf4bb3459..f8e4937802 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -1439,6 +1439,7 @@ class TestPathname < Test::Unit::TestCase Pathname.new("/foo/bar").relative_path_from("/foo/baz")) obj = Object.new def obj.cleanpath() Pathname.new("/foo/baz") end + def obj.is_a?(m) m == Pathname end assert_equal( Pathname.new("../bar"), Pathname.new("/foo/bar").relative_path_from(obj)) |