bad test in 1.9
This commit is contained in:
parent
544a044105
commit
27d6106376
2
Rakefile
2
Rakefile
|
@ -23,7 +23,7 @@ task :publish => [:rdoc] do
|
||||||
Rake::RubyForgePublisher.new(GEM, RUBYFORGE_USER).upload
|
Rake::RubyForgePublisher.new(GEM, RUBYFORGE_USER).upload
|
||||||
end
|
end
|
||||||
|
|
||||||
namespace :gem do
|
namespace :gem do
|
||||||
|
|
||||||
desc "Install the gem locally"
|
desc "Install the gem locally"
|
||||||
task :install do
|
task :install do
|
||||||
|
|
|
@ -16,9 +16,6 @@ class BSONTest < Test::Unit::TestCase
|
||||||
def test_string
|
def test_string
|
||||||
doc = {'doc' => 'hello, world'}
|
doc = {'doc' => 'hello, world'}
|
||||||
@b.serialize(doc)
|
@b.serialize(doc)
|
||||||
assert_equal @b.to_a, [0x1b, 0x00, 0x00, 0x00, 0x02, ?d, ?o, ?c, 0x00, 0x0D,
|
|
||||||
0x00, 0x00, 0x00, ?h, ?e, ?l, ?l, ?o, ","[0], " "[0],
|
|
||||||
?w, ?o, ?r, ?l, ?d, 0x00, 0x00]
|
|
||||||
assert_equal doc, @b.deserialize
|
assert_equal doc, @b.deserialize
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue