mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
tests: Add more coverage for table.concat corner cases
This commit is contained in:
parent
7ec3117177
commit
dfdc124e27
1 changed files with 19 additions and 0 deletions
|
@ -412,6 +412,25 @@ do
|
|||
assert(table.find({[(1)] = true}, true) == 1)
|
||||
end
|
||||
|
||||
-- test table.concat
|
||||
do
|
||||
-- hash elements
|
||||
local t = {}
|
||||
t[123] = "a"
|
||||
t[124] = "b"
|
||||
|
||||
assert(table.concat(t) == "")
|
||||
assert(table.concat(t, ",", 123, 124) == "a,b")
|
||||
assert(table.concat(t, ",", 123, 123) == "a")
|
||||
|
||||
-- numeric values
|
||||
assert(table.concat({1, 2, 3}, ",") == "1,2,3")
|
||||
assert(table.concat({"a", 2, "c"}, ",") == "a,2,c")
|
||||
|
||||
-- out of bounds indices => element is nil => error
|
||||
assert(pcall(table.concat, t, ",", 1, 100) == false)
|
||||
end
|
||||
|
||||
-- test indexing with strings that have zeroes embedded in them
|
||||
do
|
||||
local t = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue