Added to_json for Mongo::ObjectID.

This commit is contained in:
John Nunemaker 2009-12-05 10:54:36 -05:00 committed by Kyle Banker
parent 2087cd4286
commit 8ab4e77a81
2 changed files with 10 additions and 1 deletions

View File

@ -101,6 +101,10 @@ module Mongo
def inspect; to_s; end
def to_json(*args)
%Q("#{to_s}")
end
# Get a string representation of this ObjectID using the legacy byte
# ordering. This method may eventually be removed. If you are not sure
# that you need this method you should be using the regular to_s.

View File

@ -1,4 +1,4 @@
require 'test/test_helper'
require 'test_helper'
class ObjectIDTest < Test::Unit::TestCase
@ -139,4 +139,9 @@ class ObjectIDTest < Test::Unit::TestCase
assert_in_delta time.to_i, id.generation_time.to_i, 2
end
def test_json
id = ObjectID.new
assert_equal %Q("#{id}"), id.to_json
end
end