diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-05 19:48:15 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-05 19:48:15 +0000 |
commit | d03528608dda5007e055a6d4c84640b690948eaf (patch) | |
tree | 653ab136c1d41e1de6fb7c8632271b909f6a7905 /test/test_pp.rb | |
parent | b614474ece8ca5975367a14a38adb7e5810ed9b1 (diff) | |
download | bundler-d03528608dda5007e055a6d4c84640b690948eaf.tar.gz |
* 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.rb | 8 |
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 |