summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-04 11:22:20 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-04 11:22:20 +0000
commitd80282eecce4d2b6a7c3f419659d6e4d8eecb536 (patch)
tree269556b9d73b202876fa456daecfcde8d32fc767
parentb549ced9ed7e02ab87a8a75a85a002d4bb8e8b99 (diff)
* test/pathname/test_pathname.rb: added testcase for Pathname#mountpoint.
[fix GH-709] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47385 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/pathname/test_pathname.rb5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e535185183..099deb099c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep 4 20:22:14 2014 Laurent Arnoud <laurent@spkdev.net>
+
+ * test/pathname/test_pathname.rb: added testcase for Pathname#mountpoint.
+ [fix GH-709]
+
Thu Sep 4 20:09:21 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* symbian/*: removed Symbian support.
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb
index 98d321f1d1..75040431d1 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -559,6 +559,11 @@ class TestPathname < Test::Unit::TestCase
assert_include([true, false], r)
end
+ def test_mountpoint_enoent
+ r = Pathname("/nonexistent").mountpoint?
+ assert_equal false, r
+ end
+
def test_destructive_update
path = Pathname.new("a")
path.to_s.replace "b"