forked from tj/commander.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request tj#1 from rike422/support_subcommand_alias
Support the alias of Git style sub-command
- Loading branch information
Showing
4 changed files
with
59 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
var exec = require('child_process').exec | ||
, path = require('path') | ||
, should = require('should'); | ||
|
||
|
||
|
||
var bin = path.join(__dirname, './fixtures/pm') | ||
// not exist | ||
exec(bin + ' l', function (error, stdout, stderr) { | ||
//stderr.should.equal('\n pm-list(1) does not exist, try --help\n\n'); | ||
// TODO error info are not the same in between <=v0.8 and later version | ||
should.notEqual(0, stderr.length); | ||
}); | ||
|
||
// success case | ||
exec(bin + ' i', function (error, stdout, stderr) { | ||
stdout.should.equal('install\n'); | ||
}); | ||
|
||
// subcommand bin file with explicit extension | ||
exec(bin + ' p', function (error, stdout, stderr) { | ||
stdout.should.equal('publish\n'); | ||
}); | ||
|
||
// spawn EACCES | ||
exec(bin + ' s', function (error, stdout, stderr) { | ||
// TODO error info are not the same in between <v0.10 and v0.12 | ||
should.notEqual(0, stderr.length); | ||
}); | ||
|
||
// when `bin` is a symbol link for mocking global install | ||
var bin = path.join(__dirname, './fixtures/pmlink') | ||
// success case | ||
exec(bin + ' i', function (error, stdout, stderr) { | ||
stdout.should.equal('install\n'); | ||
}); |