1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

add a test.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2012-02-19 14:44:36 +00:00
parent d7bf156afd
commit 05a2cd709f

View file

@ -574,6 +574,10 @@ if defined? DBM
FileUtils.remove_entry_secure @tmproot if File.directory?(@tmproot)
end
def test_version
assert_instance_of(String, DBM::VERSION)
end
def test_reader_open_notexist
assert_raise(Errno::ENOENT) {
DBM.open("#{@tmproot}/a", 0666, DBM::READER)