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.
18 lines
468 B
18 lines
468 B
14 years ago
|
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());
|