Пример #1
0
 def test_check_operator_comparison(self):
     string_type = StringType('yo yo')
     with patch.object(string_type, 'contains', return_value=True):
         result = engine._do_operator_comparison(
                 string_type, 'contains', 'its mocked')
         self.assertTrue(result)
         string_type.contains.assert_called_once_with('its mocked')
Пример #2
0
 def test_check_operator_comparison(self):
     string_type = StringType('yo yo')
     with patch.object(string_type, 'contains', return_value=True):
         result = engine._do_operator_comparison(
             string_type, 'contains', 'its mocked')
         self.assertTrue(result)
         string_type.contains.assert_called_once_with('its mocked')