25 lines
503 B
Ruby
25 lines
503 B
Ruby
require './test/test_helper'
|
|
|
|
class TiumestampTest < Test::Unit::TestCase
|
|
include Mongo
|
|
|
|
def test_timestamp_equality
|
|
t1 = Timestamp.new(5000, 200)
|
|
t2 = Timestamp.new(5000, 200)
|
|
assert_equal t2, t1
|
|
end
|
|
|
|
def test_implements_array_for_backward_compatibility
|
|
ts = Timestamp.new(5000, 200)
|
|
assert_equal 200, ts[0]
|
|
assert_equal 5000, ts[1]
|
|
|
|
array = ts.map {|t| t }
|
|
assert_equal 2, array.length
|
|
|
|
assert_equal 200, array[0]
|
|
assert_equal 5000, array[1]
|
|
end
|
|
|
|
end
|