Add tests
This commit is contained in:
parent
f6a2306d1a
commit
4e36cf862f
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
true
|
||||
false
|
||||
false
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
true
|
||||
false
|
||||
false
|
||||
|
|
Loading…
Reference in New Issue