mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
427 B
25 lines
427 B
|
|
|
|
/*
|
|
sometimes jsonparse changes numbers slightly.
|
|
*/
|
|
|
|
var r = Math.random()
|
|
, Parser = require('jsonparse')
|
|
, p = new Parser()
|
|
, assert = require('assert')
|
|
, times = 20
|
|
while (times --) {
|
|
|
|
assert.equal(JSON.parse(JSON.stringify(r)), r, 'core JSON')
|
|
|
|
p.onValue = function (v) {
|
|
console.error('parsed', v)
|
|
assert.equal(v,r)
|
|
}
|
|
console.error('correct', r)
|
|
p.write (new Buffer(JSON.stringify([r])))
|
|
|
|
|
|
|
|
}
|
|
|