-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial tests and support for other quotechars * Quote parsing passes tests * Test files * Writer tests * First iteration passes tests * Added option to always quote strings * remove unneeded option * Add performance test for writing * Renamed options and better empty string handeling
- Loading branch information
Showing
10 changed files
with
187 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
data_ | ||
|
||
_no_quote_string noquote | ||
_quote_string "quote string" | ||
_whitespace_string " " | ||
_empty_string "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
data_ | ||
|
||
_no_quote_string noquote | ||
_quote_string 'quote string' | ||
_whitespace_string ' ' | ||
_empty_string '' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
data_ | ||
|
||
loop_ | ||
_no_quote_string #1 | ||
_quote_string #2 | ||
_whitespace_string #3 | ||
_empty_string #4 | ||
_number_and_string #5 | ||
_number_and_empty #6 | ||
_number #7 | ||
_empty_string_and_normal_string #8 | ||
noquote "quote string" " " "" 4.0 5.0 6.0 "" | ||
noquote "quote string" " " "" noquote "" 7.0 test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
data_ | ||
|
||
loop_ | ||
_no_quote_string #1 | ||
_quote_string #2 | ||
_whitespace_string #3 | ||
_empty_string #4 | ||
_number_and_string #5 | ||
_number_and_empty #6 | ||
_number #7 | ||
_empty_string_and_normal_string #8 | ||
noquote 'quote string' ' ' '' 4.0 5.0 6.0 '' | ||
noquote 'quote string' ' ' '' noquote '' 7.0 test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters