mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
18 lines
478 B
JavaScript
18 lines
478 B
JavaScript
var common = require('../common');
|
|
var assert = require('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());
|