コード例 #1
0
 def test_find_by_function_lower_endswith(self, text, res):
     results = licenraptor.find_by_function(
         lambda x: x.name.lower().endswith(text), multiple=True)
     assert (MITLicense in results) == res
コード例 #2
0
 def test_find_by_function_is_equal(self):
     result = licenraptor.find_by_function(lambda x: x == MITLicense,
                                           multiple=False)
     assert result == MITLicense
コード例 #3
0
 def test_find_by_false_multiple(self):
     results = licenraptor.find_by_function(lambda x: False, multiple=True)
     assert results == []
コード例 #4
0
 def test_find_by_false_single(self):
     with pytest.raises(KeyError):
         result = licenraptor.find_by_function(lambda x: False,
                                               multiple=False)
コード例 #5
0
 def test_find_by_true(self, multiple):
     result = licenraptor.find_by_function(lambda x: True, multiple)
     assert result