tests: grammar

This commit is contained in:
Starbeamrainbowlabs 2023-08-15 17:44:19 +01:00
parent 8d79e6f0ab
commit be8e097f1f
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 7 additions and 7 deletions

View File

@ -1,43 +1,43 @@
local polyfill = require("worldeditadditions_core.utils.strings.polyfill")
describe("trim", function()
it("work for a string that's already trimmed", function()
it("should work for a string that's already trimmed", function()
assert.are.equal(
polyfill.trim("test"),
"test"
)
end)
it("trim from the start", function()
it("should trim from the start", function()
assert.are.equal(
polyfill.trim(" test"),
"test"
)
end)
it("trim from the end", function()
it("should trim from the end", function()
assert.are.equal(
polyfill.trim("test "),
"test"
)
end)
it("trim from both ends", function()
it("should trim from both ends", function()
assert.are.equal(
polyfill.trim(" test "),
"test"
)
end)
it("trim another string", function()
it("should trim another string", function()
assert.are.equal(
polyfill.trim("yay "),
"yay"
)
end)
it("trim tabs", function()
it("should trim tabs", function()
assert.are.equal(
polyfill.trim("//forest "),
"//forest"
)
end)
it("avoid trimming spaces in the middle", function()
it("should avoid trimming spaces in the middle", function()
assert.are.equal(
polyfill.trim("te st "),
"te st"