mirror of https://github.com/lukechilds/node.git
Johan Euphrosine
15 years ago
committed by
Ryan Dahl
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
common = require("../common"); |
||||
|
assert = common.assert; |
||||
|
|
||||
|
var stdout_write = global.process.stdout.write; |
||||
|
var strings = []; |
||||
|
global.process.stdout.write = function(string) { |
||||
|
strings.push(string); |
||||
|
}; |
||||
|
|
||||
|
console.log('foo'); |
||||
|
console.log('foo', 'bar'); |
||||
|
console.log('%s %s', 'foo', 'bar', 'hop'); |
||||
|
|
||||
|
global.process.stdout.write = stdout_write; |
||||
|
assert.equal('foo\n', strings.shift()); |
||||
|
assert.equal('foo bar\n', strings.shift()); |
||||
|
assert.equal('foo bar hop\n', strings.shift()); |
Loading…
Reference in new issue