我为正在听音乐的用户提供一个输入字段,并尝试找到正确的艺术家或曲目名称。
from mock import patch
from django.core.management import call_command
class ImportCsvTest(TestCase):
@patch("common.management.commands.import_csv.????")
def test_import_csv(self):
call_command("import_lyric_artists", file=?????)
我想将其与两个javascript变量进行比较:
问题是要处理人为输入错误。 ex:“ alicia key falin”对于艺术家和曲目名称应返回true。
我已经尝试过有关fusejs和{{3}}库的脚本,但是我对结果不感到困惑。
实际测试:
<input type="search" id="search" class="form-control form-control-lg" name="search" autocomplete="off" autofocus>
目标是防止大写,小写,连字符,句号,逗号,数字,功能,专长等错误。
有一些库或脚本可以正确处理吗?