Skip to content

Commit

Permalink
Create a pointless little test.
Browse files Browse the repository at this point in the history
Closes #18.
  • Loading branch information
flatheadmill committed Jul 19, 2013
1 parent 51d58aa commit 9095362
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
}
, "dependencies": { "cheerio": "0.12.0", "mkdirp": "0.3.5" }
, "lib" : "lib"
, "scripts" : { "test": "(proof run t/*/*.t | tee .proof.out | proof progress) || (proof errors < .proof.out)" }
, "scripts" : { "test": "(proof run t/*/*.t.js | tee .proof.out | proof progress) || (proof errors < .proof.out)" }
, "engines" : { "node": "> 0.6.0" }
}
5 changes: 5 additions & 0 deletions t/edify/require.t.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env node

require('proof')(1, function (ok) {
ok(require('../..'), 'require')
})

0 comments on commit 9095362

Please sign in to comment.