123456789101112131415161718 |
- /**
- * Module dependencies
- */
- var TEST_SUITE = require('../spec/coercion.spec');
- var runSuite = require('../spec/helpers/run-suite');
- var toRunTestWith = require('./helpers/to-run-test-with');
- var expandSuite = require('../spec/helpers/expand-suite');
- var rttc = require('../');
- describe('.coerce()', function (){
- // Take the array of tests and extend them with some derivative
- // tests automatically. Then run them.
- runSuite(expandSuite(TEST_SUITE), toRunTestWith(rttc.coerce) );
- });
|