Comparison

tests/test_utf8.lua @ 7515:9e48299799d8

test_utf8: remove 2 unused variables and an undefined variable [luacheck]
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 23 Jul 2016 20:24:14 +0800
parent 6594:fa6eb6fb4a80
child 7961:ff556d010225
comparison
equal deleted inserted replaced
7514:ea58c0fe1cd7 7515:9e48299799d8
9 local data = line:match(":%s*([^#]+)"):gsub("%s+", ""):gsub("..", function (c) return string.char(tonumber(c, 16)); end) 9 local data = line:match(":%s*([^#]+)"):gsub("%s+", ""):gsub("..", function (c) return string.char(tonumber(c, 16)); end)
10 local expect = line:match("(%S+):"); 10 local expect = line:match("(%S+):");
11 if expect ~= "pass" and expect ~= "fail" then 11 if expect ~= "pass" and expect ~= "fail" then
12 error("unknown expectation: "..line:match("^[^:]+")); 12 error("unknown expectation: "..line:match("^[^:]+"));
13 end 13 end
14 local prefix, style = " ", valid_style;
15 local valid = utf8.valid(data); 14 local valid = utf8.valid(data);
16 assert_equal(valid, utf8.valid(data.." ")); 15 assert_equal(valid, utf8.valid(data.." "));
17 assert_equal(valid, expect == "pass", line); 16 assert_equal(valid, expect == "pass", line);
18 end 17 end
19 end 18 end