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.
36 lines
900 B
36 lines
900 B
12 years ago
|
var tap = require('tap')
|
||
|
var init = require('../')
|
||
|
var rimraf = require('rimraf')
|
||
|
|
||
|
tap.test('the basics', function (t) {
|
||
|
var i = __dirname + '/basic.input'
|
||
|
var dir = __dirname
|
||
|
init(dir, i, {foo:'bar'}, function (er, data) {
|
||
|
if (er) throw er
|
||
|
var expect =
|
||
|
{ name: 'the-name',
|
||
|
version: '1.2.5',
|
||
|
description: 'description',
|
||
|
author: 'me <em@i.l> (http://url)',
|
||
|
scripts: { test: 'make test' },
|
||
|
main: 'main.js',
|
||
|
config: { foo: 'bar' },
|
||
|
package: {} }
|
||
|
t.same(data, expect)
|
||
|
t.end()
|
||
|
})
|
||
|
setTimeout(function () {
|
||
|
process.stdin.emit('data', 'the-name\n')
|
||
|
}, 50)
|
||
|
setTimeout(function () {
|
||
|
process.stdin.emit('data', 'description\n')
|
||
|
}, 100)
|
||
|
setTimeout(function () {
|
||
|
process.stdin.emit('data', 'yes\n')
|
||
|
}, 150)
|
||
|
})
|
||
|
|
||
|
tap.test('teardown', function (t) {
|
||
|
rimraf(__dirname + '/package.json', t.end.bind(t))
|
||
|
})
|