From 391fc2eeecfc2f0d0f851b0c27ba02e041fe2cd9 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 5 May 2014 12:49:27 +0000 Subject: * ext/pathname/lib/pathname.rb (Pathname#/): Aliased to Pathname#+. Suggested by Alexey Muranov. [ruby-core:61432] [Feature #9625] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45826 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/pathname/test_pathname.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/pathname') diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 4e88db754d..24f6bb942d 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -213,6 +213,10 @@ class TestPathname < Test::Unit::TestCase defassert(:plus, 'a//b/d//e', 'a//b/c', '../d//e') + def test_slash + assert_kind_of(Pathname, Pathname("a") / Pathname("b")) + end + def test_parent assert_equal(Pathname("."), Pathname("a").parent) end -- cgit v1.2.3