From 4e5205e45e84b2a957c110fc93462a3dc8ea5c9b Mon Sep 17 00:00:00 2001 From: "Quildreen \"Sorella\" Motta" Date: Tue, 13 May 2014 23:39:25 -0300 Subject: [PATCH] ... --- .hgignore | 1 + test/{specs/index.js => specs-src/core.sjs} | 16 +++++++++++++++- test/specs-src/index.sjs | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) rename test/{specs/index.js => specs-src/core.sjs} (81%) diff --git a/.hgignore b/.hgignore index 5033d2b..2204947 100644 --- a/.hgignore +++ b/.hgignore @@ -4,3 +4,4 @@ node_modules dist npm-debug.log docs +test/specs diff --git a/test/specs/index.js b/test/specs-src/core.sjs similarity index 81% rename from test/specs/index.js rename to test/specs-src/core.sjs index e278e9a..4c8d171 100644 --- a/test/specs/index.js +++ b/test/specs-src/core.sjs @@ -18,4 +18,18 @@ // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -module.exports = []; \ No newline at end of file + +var spec = require('hifive')() +var alright = require('alright') +var async = require('../../') + + +module.exports = spec('Async/Core', function(it, spec) { + + spec('fail()', function(it) { + it('Should always fail.', function() { + + }) + }) + +}) diff --git a/test/specs-src/index.sjs b/test/specs-src/index.sjs index b8eca9d..7aa6558 100644 --- a/test/specs-src/index.sjs +++ b/test/specs-src/index.sjs @@ -20,5 +20,5 @@ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. module.exports = [ - + require('./core') ] \ No newline at end of file