11cb0ef41Sopenharmony_civar test = require('tape');
21cb0ef41Sopenharmony_civar table = require('../');
31cb0ef41Sopenharmony_ci
41cb0ef41Sopenharmony_citest('align', function (t) {
51cb0ef41Sopenharmony_ci    t.plan(1);
61cb0ef41Sopenharmony_ci    var s = table([
71cb0ef41Sopenharmony_ci        [ 'beep', '1024' ],
81cb0ef41Sopenharmony_ci        [ 'boop', '33450' ],
91cb0ef41Sopenharmony_ci        [ 'foo', '1006' ],
101cb0ef41Sopenharmony_ci        [ 'bar', '45' ]
111cb0ef41Sopenharmony_ci    ], { align: [ 'l', 'r' ] });
121cb0ef41Sopenharmony_ci    t.equal(s, [
131cb0ef41Sopenharmony_ci        'beep   1024',
141cb0ef41Sopenharmony_ci        'boop  33450',
151cb0ef41Sopenharmony_ci        'foo    1006',
161cb0ef41Sopenharmony_ci        'bar      45'
171cb0ef41Sopenharmony_ci    ].join('\n'));
181cb0ef41Sopenharmony_ci});
19