Skip to content

Commit

Permalink
add test dir, up version minor
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhandley committed May 4, 2012
1 parent ce0cb2f commit a617668
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"description": "Write minimal node index.js/index.coffee files that require and export all their siblings by file basename",

"version": "0.0.2",
"version": "0.1.0",

"license" : "MIT",

Expand Down
3 changes: 3 additions & 0 deletions test/lib/bar/fed/again.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = function() {
return "again";
}
3 changes: 3 additions & 0 deletions test/lib/bar/fed/ignored.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = function() {
return "ignored";
}
1 change: 1 addition & 0 deletions test/lib/bar/fed/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('../../../../index')(__dirname, ['again', 'somemore'])
3 changes: 3 additions & 0 deletions test/lib/bar/fed/somemore.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = function() {
return "somemore";
}

0 comments on commit a617668

Please sign in to comment.