1.0.0 • Published 9 years ago

drive-to-tape v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

drive to tape

Turns drive tests into tape tests.

On the command line:

drive-to-tape --help

Or require it in a js module:

var convert = require('drive-to-tape')
  , fs = require('fs')

fs.createReadStream('./path/to/drive-test')
  .pipe(convert())
  .pipe(fs.createWriteStream('./path/to/tape-test'))