slightly more coherent organization of concerns

This commit is contained in:
brianleroux 2011-08-19 21:50:46 -07:00
parent 5a3208291c
commit e44cc8add1
67 changed files with 6 additions and 9 deletions

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,4 @@
exports['you are sane'] = (test) ->
test.expect 1
test.ok true, "this assertion should always pass"
test.done()

View File

@ -1,17 +1,10 @@
util = require('util')
exec = require('child_process').exec
exports['you are sane'] = (test) ->
test.expect 1
test.ok true, "this assertion should pass"
test.done()
exports['default example project is generated'] = (test) ->
test.expect 1
exec './bin/create', (error, stdout, stderr) ->
#console.log 'stdout: ' + stdout if stdout?
#console.log 'stderr: ' + stderr if stderr?
#console.log 'exec error: ' + error if error?
test.ok true, "this assertion should pass" unless error?
test.done()