1var test = require('tape'); 2var expand = require('..'); 3 4test('pad', function(t) { 5 t.deepEqual(expand('{9..11}'), [ 6 '9', '10', '11' 7 ]); 8 t.deepEqual(expand('{09..11}'), [ 9 '09', '10', '11' 10 ]); 11 t.end(); 12}); 13 14 15