]> gerrit.simantics Code Review - simantics/district.git/blob - table.js
9c6701464cf66a4b78f13b5ad1db2937586b87eb
[simantics/district.git] / table.js
1 var test = require('tape');
2 var table = require('../');
3
4 test('table', function (t) {
5     t.plan(1);
6     var s = table([
7         [ 'master', '0123456789abcdef' ],
8         [ 'staging', 'fedcba9876543210' ]
9     ]);
10     t.equal(s, [
11         'master   0123456789abcdef',
12         'staging  fedcba9876543210'
13     ].join('\n'));
14 });