Revert "RUBY-267 Cursor#alive?"

This reverts commit 05dfef2f11.
This adds new functionality and thus must wait for the 1.4 release.
This commit is contained in:
Kyle Banker 2011-05-10 15:58:23 -04:00
parent 05dfef2f11
commit b8ab13e7f9
2 changed files with 0 additions and 22 deletions

View File

@ -307,13 +307,6 @@ module Mongo
# @return [Boolean] # @return [Boolean]
def closed?; @closed; end def closed?; @closed; end
# Is this cursor alive on the server?
#
# @return [Boolean]
def alive?
@cursor_id && @cursor_id != 0
end
# Returns an integer indicating which query options have been selected. # Returns an integer indicating which query options have been selected.
# #
# @return [Integer] # @return [Integer]

View File

@ -32,21 +32,6 @@ class CursorTest < Test::Unit::TestCase
assert_kind_of Numeric, explaination['nscanned'] assert_kind_of Numeric, explaination['nscanned']
end end
def test_alive
batch = []
5000.times do |n|
batch << {:a => n}
end
@@coll.insert(batch)
cursor = @@coll.find
assert !cursor.alive?
cursor.next
assert cursor.alive?
cursor.close
assert !cursor.alive?
@@coll.remove
end
def test_count def test_count
@@coll.remove @@coll.remove