mongo-ruby-driver/test/auxillary/fork_test.rb

31 lines
652 B
Ruby
Raw Permalink Normal View History

2011-03-18 02:38:21 +00:00
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'mongo'
require 'test/unit'
require File.expand_path("../../test_helper", __FILE__)
2011-03-18 02:38:21 +00:00
class ForkTest < Test::Unit::TestCase
include Mongo
def setup
@conn = standard_connection
end
def test_fork
# Now insert some data
10.times do |n|
@conn[MONGO_TEST_DB]['nums'].insert({:a => n})
end
# Now fork. You'll almost always see an exception here.
if !Kernel.fork
10.times do
assert @conn[MONGO_TEST_DB]['nums'].find_one
end
else
10.times do
assert @conn[MONGO_TEST_DB]['nums'].find_one
end
end
end
end