Exemplo n.º 1
0
 def test_eval_lists_different(self):
     assert evaluators.eval_lists(['Книги'], ['Музыка'], 1) == 0
Exemplo n.º 2
0
 def test_eval_lists_not_set(self):
     assert evaluators.eval_lists([''], ['Музыка, Книги, Disney'], 1) == 0
Exemplo n.º 3
0
 def test_eval_lists_match(self):
     assert evaluators.eval_lists(["Шахматы, концерты, книги"],
                                  ['Шахматы, концерты, книги'], 1) == 1
Exemplo n.º 4
0
 def test_eval_lists_different(self):
     assert evaluators.eval_lists(['Guitar'], ['Punk'], 1) == 0
Exemplo n.º 5
0
 def test_eval_lists_not_set(self):
     assert evaluators.eval_lists([''], ['Guitar, Skate, pop-punk'], 1) == 0
Exemplo n.º 6
0
 def test_eval_lists_match(self):
     assert evaluators.eval_lists(['Concerts, Aliens, XBox 360'],
                                  ['Concerts, Aliens, XBox 360'], 1) == 1