trainingproject
Version:
A module to teach you how to module.
10 lines (7 loc) • 307 B
JavaScript
var sprintf = require(__dirname + '/..');
exports['sprintf() export works'] = function(test) {
test.equal(sprintf('Hallo %s!', 'Welt'), 'Hallo Welt!');
test.equal(sprintf.sprintf('Hallo %s!', 'Welt'), 'Hallo Welt!');
test.equal(sprintf.vsprintf('Hallo %s!', ['Welt']), 'Hallo Welt!');
test.done();
};