Not integrated with existing integration ccm operation. There is a handful of failing cqlengine tests in the commit, that worked before the move.
10 lines
321 B
Python
10 lines
321 B
Python
from unittest import TestCase
|
|
from cassandra.cqlengine.operators import BaseQueryOperator, QueryOperatorException
|
|
|
|
|
|
class BaseOperatorTest(TestCase):
|
|
|
|
def test_get_operator_cannot_be_called_from_base_class(self):
|
|
with self.assertRaises(QueryOperatorException):
|
|
BaseQueryOperator.get_operator('*')
|