33 lines
988 B
Lua
33 lines
988 B
Lua
|
|
local gstring = require("gears.string")
|
|
|
|
describe("gears.string", function()
|
|
describe("quote_pattern", function()
|
|
it("text", function()
|
|
assert.is.equal(gstring.quote_pattern("text"), "text")
|
|
end)
|
|
|
|
it("do.t", function()
|
|
assert.is.equal(gstring.quote_pattern("do.t"), "do%.t")
|
|
end)
|
|
|
|
it("per%cen[tage", function()
|
|
assert.is.equal(gstring.quote_pattern("per%cen[tage"), "per%%cen%[tage")
|
|
end)
|
|
end)
|
|
|
|
describe("query_to_pattern", function()
|
|
it("DownLow", function()
|
|
assert.is.equal(string.match("DownLow", gstring.query_to_pattern("downlow")), "DownLow")
|
|
end)
|
|
|
|
it("%word", function()
|
|
assert.is.equal(string.match("%word", gstring.query_to_pattern("%word")), "%word")
|
|
end)
|
|
|
|
it("Substring of DownLow", function()
|
|
assert.is.equal(string.match("DownLow", gstring.query_to_pattern("ownl")), "ownL")
|
|
end)
|
|
end)
|
|
end)
|