Skip to content

Commit

Permalink
passing map test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Jun 8, 2012
1 parent 5c26bd4 commit 1fe6107
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/map.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
var concatMap = require('../');
var test = require('tap').test;

test('concat mapping', function (t) {
var xs = [ 1, 2, 3, 4, 5, 6 ];
var ys = concatMap(xs, function (x) {
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
});
t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]);
t.end();
});

0 comments on commit 1fe6107

Please sign in to comment.