mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![akr](/assets/img/avatar_default.png)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
31 lines
532 B
Ruby
31 lines
532 B
Ruby
require 'test/unit/testsuite'
|
|
require 'test/unit/testcase'
|
|
|
|
begin
|
|
require 'dbm'
|
|
rescue LoadError
|
|
end
|
|
|
|
if defined? DBM
|
|
require 'tmpdir'
|
|
require 'fileutils'
|
|
|
|
class TestDBM < Test::Unit::TestCase
|
|
TMPROOT = "#{Dir.tmpdir}/ruby-gdbm.#{$$}"
|
|
|
|
def setup
|
|
Dir.mkdir TMPROOT
|
|
end
|
|
|
|
def teardown
|
|
FileUtils.rm_rf TMPROOT if File.directory?(TMPROOT)
|
|
end
|
|
|
|
def test_freeze
|
|
DBM.open("#{TMPROOT}/a.dbm") {|d|
|
|
d.freeze
|
|
assert_raises(TypeError) { d["k"] = "v" }
|
|
}
|
|
end
|
|
end
|
|
end
|