2022-08-06 09:02:29 +00:00
|
|
|
local libivy = require "ivy.libivy"
|
|
|
|
|
|
|
|
|
|
it("should run a simple match", function(t)
|
|
|
|
|
local score = libivy.ivy_match("term", "I am a serch term")
|
|
|
|
|
|
2022-08-13 15:43:15 +00:00
|
|
|
if score <= 0 then
|
|
|
|
|
t.error("Score should not be less than 0 found " .. score)
|
2022-08-06 09:02:29 +00:00
|
|
|
end
|
|
|
|
|
end)
|