Skip to content

Commit

Permalink
not enough example
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Dec 19, 2012
1 parent 028e858 commit 9b2ffe1
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions example/not_enough.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
var falafel = require('falafel');
var test = require('../');

test('array', function (t) {
t.plan(8);

var src = '(' + function () {
var xs = [ 1, 2, [ 3, 4 ] ];
var ys = [ 5, 6 ];
g([ xs, ys ]);
} + ')()';

var output = falafel(src, function (node) {
if (node.type === 'ArrayExpression') {
node.update('fn(' + node.source() + ')');
}
});

var arrays = [
[ 3, 4 ],
[ 1, 2, [ 3, 4 ] ],
[ 5, 6 ],
[ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ],
];

Function(['fn','g'], output)(
function (xs) {
t.same(arrays.shift(), xs);
return xs;
},
function (xs) {
t.same(xs, [ [ 1, 2, [ 3, 4 ] ], [ 5, 6 ] ]);
}
);
});

0 comments on commit 9b2ffe1

Please sign in to comment.