* 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
This commit is contained in:
usa 2014-12-05 19:48:15 +00:00
Родитель b614474ece
Коммит d03528608d
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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