Add tests

This commit is contained in:
Grumph 2021-01-27 01:41:08 +01:00
parent f6a2306d1a
commit 4e36cf862f
5 changed files with 11 additions and 0 deletions

View File

@ -34,12 +34,14 @@ describe("gears.string", function()
assert.is_true(gstring.startswith("something", ""))
assert.is_true(gstring.startswith("something", "some"))
assert.is_false(gstring.startswith("something", "none"))
assert.is_false(gstring.startswith(nil, "anything"))
end)
describe("endswith", function()
assert.is_true(gstring.endswith("something", ""))
assert.is_true(gstring.endswith("something", "thing"))
assert.is_false(gstring.endswith("something", "that"))
assert.is_false(gstring.endswith(nil, "anything"))
end)
describe("split", function()

View File

@ -10,3 +10,6 @@ res = gears.string.endswith(test,"do")
print(tostring(res))
assert(res == false) --DOC_HIDE
res = gears.string.endswith(nil,"it")
print(tostring(res))
assert(res == false) --DOC_HIDE

View File

@ -1,2 +1,3 @@
true
false
false

View File

@ -9,3 +9,7 @@ assert(res == true) --DOC_HIDE
res = gears.string.startswith(test,"it")
print(tostring(res)) -- print boolean value
assert(res == false) --DOC_HIDE
res = gears.string.startswith(nil,"do")
print(tostring(res)) -- print boolean value
assert(res == false) --DOC_HIDE

View File

@ -1,2 +1,3 @@
true
false
false