X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=tests%2Ftest_simastr.py;h=88b8b9774f7d60fe0b64db147589b9836aa60858;hb=refs%2Fheads%2FGrooveBasin;hp=c62af396cc3b35bd38b48506fed6e30f2b971319;hpb=cc1389d3a27d9e4a92a7a180fc6ba6ce9e059e35;p=mpd-sima.git diff --git a/tests/test_simastr.py b/tests/test_simastr.py index c62af39..88b8b97 100644 --- a/tests/test_simastr.py +++ b/tests/test_simastr.py @@ -25,10 +25,13 @@ class TestSequenceFunctions(unittest.TestCase): 'Desert Sessions And PJ Harvey', self.assertTrue ), + ( 'Smells like teen spirit', + 'Smells Like Teen Spirits (live)', + self.assertTrue + ), ] sima.lib.simastr.SimaStr.diafilter = True for sta, stb, assertfunc in tests: assertfunc(fuzzystr(sta, stb), '"{0}" == "{1}"'.format(sta, stb)) # vim: ai ts=4 sw=4 sts=4 expandtab -