Browse Source

Add files via upload

Added testcase with pipes and decimal values with commas as decimal separator.
pull/593/head
Erik-HH 6 years ago committed by GitHub
parent
commit
ef12af397f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      tests/test-cases.js

8
tests/test-cases.js

@ -415,6 +415,14 @@ var CORE_PARSER_TESTS = [ @@ -415,6 +415,14 @@ var CORE_PARSER_TESTS = [
errors: []
}
},
{
description: "Pipes with decimal numbers and comma as decimal separator",
input: 'a|3,4|b\r\nc|3,4|d',
expected: {
data: [['a', '3,4', 'b'], ['c', '3,4', 'd']],
errors: []
}
},
{
description: "Commented line at end",
input: 'a,true,false\n# Comment',

Loading…
Cancel
Save