Skip to content
Snippets Groups Projects
Commit cd9ae26d authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge remote-tracking branch 'origin/gh-1089-csv-bug-fix' into 1.6

parents 04c04c3e 5231be97
No related branches found
No related tags found
No related merge requests found
TAP version 13
1..8
1..9
ok - obj test1
ok - obj test2
ok - obj test3
......@@ -8,3 +8,4 @@ ok - fio test2
ok - fio test3
ok - test roundtrip
ok - test load(dump(t))
ok - final comma
......@@ -36,7 +36,7 @@ local test6_ans = "|23|\t|456|\t|abcac|\t|'multiword field 4'|\t\n|none|" ..
"lag[ flag ])|\t\n||\t||\t||\t\n"
test = tap.test("csv")
test:plan(8)
test:plan(9)
readable = {}
readable.read = myread
......@@ -107,6 +107,8 @@ test:is(table2str(t), table2str(t2), "test roundtrip")
test:is(table2str(t), table2str(csv.load(csv.dump(t))), "test load(dump(t))")
test:is(table2str(csv.load('a,b,c,')), '|a|\t|b|\t|c|\t||\t\n', "final comma")
fio.unlink(file1)
fio.unlink(file2)
fio.unlink(file3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment