Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
columns: test false
Browse files Browse the repository at this point in the history
  • Loading branch information
wdavidw committed Dec 30, 2018
1 parent 83337c8 commit b1147fe
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/option.columns.coffee
Expand Up @@ -54,6 +54,17 @@ describe 'Option `columns`', ->
"FIELD_6":"2050-11-27"
] unless err
next err

it 'disabled if false', (next) ->
parse """
a,b,c
d,e,f
""", columns: false, (err, data) ->
data.should.eql [
['a', 'b', 'c']
['d', 'e', 'f']
] unless err
next err

describe 'boolean array', ->

Expand Down

0 comments on commit b1147fe

Please sign in to comment.