mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
40 lines
925 B
Lua
40 lines
925 B
Lua
local polyfill = require("worldeditadditions_core.utils.strings.polyfill")
|
|
|
|
describe("str_padstart", function()
|
|
it("should pad a string", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("test", 5, " "),
|
|
" test"
|
|
)
|
|
end)
|
|
it("should pad a different string", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("yay", 4, " "),
|
|
" yay"
|
|
)
|
|
end)
|
|
it("should pad a string with multiple characters", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("test", 10, " "),
|
|
" test"
|
|
)
|
|
end)
|
|
it("should not pad a long string", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("testtest", 5, " "),
|
|
"testtest"
|
|
)
|
|
end)
|
|
it("should pad with other characters", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("1", 2, "0"),
|
|
"01"
|
|
)
|
|
end)
|
|
it("should pad with multiple other characters", function()
|
|
assert.are.equal(
|
|
polyfill.str_padstart("1", 5, "0"),
|
|
"00001"
|
|
)
|
|
end)
|
|
end)
|