blob: 0ef07a17e24fdf07573597bb42e25800471974a3 [file] [log] [blame]
// The package "should" must be installed:
// `npm install should`
var parse = require('../lib');
require('should');
var input = '#Welcome\n"1","2","3","4"\n"a","b","c","d"';
parse(input, {comment: '#'}, function(err, output){
output.should.eql([ [ '1', '2', '3', '4' ], [ 'a', 'b', 'c', 'd' ] ]);
});