mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 04:31:53 +02:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
|
var test = require('tap').test;
|
||
|
var detective = require('../');
|
||
|
var fs = require('fs');
|
||
|
var src = fs.readFileSync(__dirname + '/files/chained.js');
|
||
|
|
||
|
test('chained', function (t) {
|
||
|
t.deepEqual(detective(src), [ 'c', 'b', 'a' ]);
|
||
|
t.end();
|
||
|
});
|