From 2e7e88e49aec8d6800eb92ede66753b55a4fe8ee Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 20 Sep 2005 08:14:57 +0000 Subject: * test/dbm/test_dbm.rb (TestDBM::test_s_open_error): remove test_s_open_error test to detect duplicate open. [ruby-dev:27202] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9245 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/dbm/test_dbm.rb | 8 -------- 1 file changed, 8 deletions(-) (limited to 'test') diff --git a/test/dbm/test_dbm.rb b/test/dbm/test_dbm.rb index d566015df..d4d488f57 100644 --- a/test/dbm/test_dbm.rb +++ b/test/dbm/test_dbm.rb @@ -86,14 +86,6 @@ if defined? DBM assert_equal(DBM.open("tmptest_dbm") { :foo }, :foo) end - def test_s_open_error - assert_instance_of(DBM, dbm = DBM.open("tmptest_dbm", 0)) - assert_raise(Errno::EACCES, "NEVER MIND IF YOU USE Berkeley DB3") { - DBM.open("tmptest_dbm", 0) - } - dbm.close - end - def test_close assert_instance_of(DBM, dbm = DBM.open("tmptest_dbm")) assert_nil(dbm.close) -- cgit