From 94e6e3b16916254d64ab39d8f5bc4e9851e600ea Mon Sep 17 00:00:00 2001 From: el aras Date: Tue, 25 Dec 2012 23:26:28 -0800 Subject: [PATCH] rebasing to openmason --- .travis.yml | 1 - package.json | 5 ++++- test/basic.js | 10 ++++++++++ test/mocha.opts | 3 +++ 4 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 test/basic.js create mode 100644 test/mocha.opts diff --git a/.travis.yml b/.travis.yml index 8111245..c2ba3f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ language: node_js node_js: - - 0.6 - 0.8 \ No newline at end of file diff --git a/package.json b/package.json index 5ed65c2..e78b6bb 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,10 @@ "kue" : ">= 0.3.3", "cron" : ">= 0.1.3" }, - "devDependencies": [], + "devDependencies": { + "mocha" : ">= 1.6.0", + "should" : ">= 1.2.0" + }, "keywords": ["cloudd", "job", "cluster", "scheduler", "workflow", "queue", "task"], "repository": {"type":"git", "url": "git://github.com/openmason/cloudd"}, "main": "index", diff --git a/test/basic.js b/test/basic.js new file mode 100644 index 0000000..9937423 --- /dev/null +++ b/test/basic.js @@ -0,0 +1,10 @@ +var cloudd=require('..'); +var assert=require('assert'); + +// nothing for now +describe('basic', function() { + before(function(done) { + done(); + }); + +}); diff --git a/test/mocha.opts b/test/mocha.opts new file mode 100644 index 0000000..9ae8347 --- /dev/null +++ b/test/mocha.opts @@ -0,0 +1,3 @@ +--require should +--growl +