summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-19 14:38:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-19 14:38:28 +0000
commit3ad8210ce18ebc926feaf300ab0f93c171329078 (patch)
treea01d6e10e54e4b92b7971d9371f3c519e312de78 /test
parentc7f815eed897a8d78b19e041a569d2667a403f4a (diff)
find.rb: raise with the name
* lib/find.rb (Find#find): raise with the given path name if it does not exist. [ruby-dev:49497] [Bug #12087] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/test_find.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_find.rb b/test/test_find.rb
index d0e92067f1..e3663e47b2 100644
--- a/test/test_find.rb
+++ b/test/test_find.rb
@@ -12,6 +12,17 @@ class TestFind < Test::Unit::TestCase
}
end
+ def test_nonexistence
+ bug12087 = '[ruby-dev:49497] [Bug #12087]'
+ Dir.mktmpdir {|d|
+ path = "#{d}/a"
+ re = /#{Regexp.quote(path)}\z/
+ assert_raise_with_message(Errno::ENOENT, re, bug12087) {
+ Find.find(path) {}
+ }
+ }
+ end
+
def test_rec
Dir.mktmpdir {|d|
File.open("#{d}/a", "w"){}