summaryrefslogtreecommitdiff
path: root/test/test_pp.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 19:48:15 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 19:48:15 +0000
commitd03528608dda5007e055a6d4c84640b690948eaf (patch)
tree653ab136c1d41e1de6fb7c8632271b909f6a7905 /test/test_pp.rb
parentb614474ece8ca5975367a14a38adb7e5810ed9b1 (diff)
* test/test_pp.rb (PPTestModule::PPFileStatTest): test for r48719.
is this the right place here? git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_pp.rb')
-rw-r--r--test/test_pp.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_pp.rb b/test/test_pp.rb
index 28a33fec5a..813daf0446 100644
--- a/test/test_pp.rb
+++ b/test/test_pp.rb
@@ -184,4 +184,12 @@ class PPDelegateTest < Test::Unit::TestCase
end
end
+class PPFileStatTest < Test::Unit::TestCase
+ def test_nothing_raised
+ assert_nothing_raised do
+ File.stat(__FILE__).pretty_inspect
+ end
+ end
+end
+
end