summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--test/sdbm/test_sdbm.rb12
2 files changed, 9 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index b5395f001b..e5c60dc967 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 10 17:34:50 2008 Akinori MUSHA <knu@iDaemons.org>
+
+ * test/sdbm/test_sdbm.rb (TestSDBM#test_index): Reflect the method
+ name change from #index to #key and remove a duplicated test
+ method.
+
Mon Nov 10 10:50:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/delegate.rb (Delegator.delegating_block): should not refer
diff --git a/test/sdbm/test_sdbm.rb b/test/sdbm/test_sdbm.rb
index b7e8498300..b94e198e95 100644
--- a/test/sdbm/test_sdbm.rb
+++ b/test/sdbm/test_sdbm.rb
@@ -199,9 +199,9 @@ class TestSDBM < Test::Unit::TestCase
}
end
- def test_index
+ def test_key
assert_equal('bar', @sdbm['foo'] = 'bar')
- assert_equal('foo', @sdbm.index('bar'))
+ assert_equal('foo', @sdbm.key('bar'))
assert_nil(@sdbm['bar'])
end
@@ -277,7 +277,7 @@ class TestSDBM < Test::Unit::TestCase
n = 0
ret = @sdbm.each_value {|val|
- assert_not_nil(key = @sdbm.index(val))
+ assert_not_nil(key = @sdbm.key(val))
assert_not_nil(i = keys.index(key))
assert_equal(val, values[i])
@@ -530,12 +530,6 @@ class TestSDBM < Test::Unit::TestCase
@sdbm = SDBM.new(@path)
end
- def test_index
- assert_equal(nil, @sdbm.index("foo"))
- @sdbm["bar"] = "foo"
- assert_equal("bar", @sdbm.index("foo"))
- end
-
def test_readonly
@sdbm["bar"] = "baz"
@sdbm.close