mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-12 22:03:31 +02:00
Add ltn12.source.table()
This commit is contained in:
@ -180,6 +180,15 @@ assert(ltn12.pump.all(source, sink), "returned error")
|
||||
assert(table.concat(t) == s, "mismatch")
|
||||
print("ok")
|
||||
|
||||
--------------------------------
|
||||
io.write("testing source.table: ")
|
||||
local inp = {'a','b','c','d','e'}
|
||||
local source = ltn12.source.table(inp)
|
||||
sink, t = ltn12.sink.table()
|
||||
assert(ltn12.pump.all(source, sink), "returned error")
|
||||
for i = 1, #inp do assert(t[i] == inp[i], "mismatch") end
|
||||
print("ok")
|
||||
|
||||
--------------------------------
|
||||
io.write("testing source.chain (with split): ")
|
||||
source = ltn12.source.string(s)
|
||||
|
Reference in New Issue
Block a user