Skip to content

Commit

Permalink
use ender-vows instead of vows
Browse files Browse the repository at this point in the history
  • Loading branch information
amccollum committed Sep 18, 2011
1 parent edb0f15 commit 120881c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cakefile
Expand Up @@ -19,5 +19,6 @@ task 'test', 'Build and run the test suite', ->
execCmds [ execCmds [
'coffee --bare --output ./test ./src/test/*.coffee', 'coffee --bare --output ./test ./src/test/*.coffee',
'npm install --dev', 'npm install --dev',
'ln -s ender-vows node_modules/vows',
'node_modules/.bin/vows ./test/*.js' 'node_modules/.bin/vows ./test/*.js'
] ]
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,6 +15,6 @@
"dependencies": { "bonzo": "*" }, "dependencies": { "bonzo": "*" },
"devDependencies": { "devDependencies": {
"coffee-script": "*", "coffee-script": "*",
"vows": "*" "ender-vows": "*"
} }
} }
2 changes: 1 addition & 1 deletion src/test/wings.coffee
Expand Up @@ -5,7 +5,7 @@ template = require('../lib/template.js')
t = template.renderTemplate t = template.renderTemplate
equal = assert.equal equal = assert.equal


if not vows.add? if not vows.add
vows.add = (name, batch) -> vows.describe(name).addBatch(batch).export(module) vows.add = (name, batch) -> vows.describe(name).addBatch(batch).export(module)


vows.add 'templates' vows.add 'templates'
Expand Down

0 comments on commit 120881c

Please sign in to comment.