Files
kiss/src/test/cases/FuzzyMapTestCase.kiss

6 lines
254 B
Plaintext

(function _testFuzzyGet []
(let [:kiss.FuzzyMap<String> m [=>"glurg" "burgle"]]
(assertLet [(Found "glurg" "burgle" _) (fuzzyGet m "gurg")
NotFound (fuzzyGet m "totally different string")]
(Assert.pass))))