CoffeeScript Ddry Snippets
CoffeeScript snippets for ddry data-driven DRY Node JS testing wrapper
Labels snippets
Details
Installs
- Total 1K
- Win 438
- Mac 414
- Linux 280
Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text CoffeeScript snippets for ddry
Set of CoffeeScript snippets for ddry data-driven DRY Node JS testing wrapper.
Scope of all these snippets is source:coffee
, so please save your brand new data-driven spec file as .coffee
to enable them.
Then, even if you haven't decided yet what are you going to test, ddp tab
will expand to
Error: language “coffee” is not supported
'use strict'
module.exports = (dd) ->
dd.drive [
dd.pending()
]
This spec is very promising since it can actually engage every test harness, but sadly useless.
To start actual testing, expand dd tab
it tab
to
Error: language “coffee” is not supported
'use strict'
module.exports = (dd) ->
dd.drive [
it: 'get things done'
i: [ input ]
e: expected
]
Then cit
will give you comma and the next it
object, so please start it at correct indent level.
Use ddr
to start just dd.drive
call, ddc
for dd.context
. And we have now only minor snippets left.
Matchers
m:
formatcher: 'plain'
m:a
formatcher: 'anyOrder'
m:c
formatcher: 'contains'
m:e
formatcher: 'error'
m:p
formatcher: 'property'
Hooks
bh
forbefore
hookah
forafter
hook
Keep focused and save your time.