mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-04 06:30:53 +01:00
17 lines
No EOL
513 B
Text
17 lines
No EOL
513 B
Text
local fs = require("@lune/fs")
|
|
|
|
local frktest = require("../lune_packages/frktest")
|
|
local check = frktest.assert.check
|
|
|
|
local ZipReader = require("../lib")
|
|
|
|
return function(test: typeof(frktest.test))
|
|
test.suite("Edge case tests", function()
|
|
test.case("Handles misaligned comment properly", function()
|
|
local data = fs.readFile("tests/data/misaligned_comment.zip")
|
|
local zip = ZipReader.load(buffer.fromstring(data))
|
|
|
|
check.equal(zip.comment, "short.")
|
|
end)
|
|
end)
|
|
end |