aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/test/match/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/expresso/test/match/test.js')
-rw-r--r--tools/node_modules/expresso/test/match/test.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/node_modules/expresso/test/match/test.js b/tools/node_modules/expresso/test/match/test.js
new file mode 100644
index 0000000..47a64d0
--- /dev/null
+++ b/tools/node_modules/expresso/test/match/test.js
@@ -0,0 +1,10 @@
+var assert = require('assert');
+
+module.exports = {
+ 'this test will pass': function() {
+ assert.ok(true);
+ },
+ 'this test will fail': function() {
+ assert.ok(false);
+ },
+} \ No newline at end of file