11cb0ef41Sopenharmony_civar test = require('tape');
21cb0ef41Sopenharmony_civar table = require('../');
31cb0ef41Sopenharmony_ci
41cb0ef41Sopenharmony_citest('table', function (t) {
51cb0ef41Sopenharmony_ci    t.plan(1);
61cb0ef41Sopenharmony_ci    var s = table([
71cb0ef41Sopenharmony_ci        [ 'master', '0123456789abcdef' ],
81cb0ef41Sopenharmony_ci        [ 'staging', 'fedcba9876543210' ]
91cb0ef41Sopenharmony_ci    ]);
101cb0ef41Sopenharmony_ci    t.equal(s, [
111cb0ef41Sopenharmony_ci        'master   0123456789abcdef',
121cb0ef41Sopenharmony_ci        'staging  fedcba9876543210'
131cb0ef41Sopenharmony_ci    ].join('\n'));
141cb0ef41Sopenharmony_ci});
15