Best Python code snippet using sure_python
maybe_counter.py
Source:maybe_counter.py  
1class MaybeCounter:2    """3    A counter to count with greater than or at least values4    """5    GREATER_THAN_LIMIT = 16    def __init__(self, count=1, at_least=False, greater_than=False):7        if at_least and greater_than:8            raise ValueError('Value may only be "at_least" or "greater_than".')9        self.count = count10        self.at_least = at_least11        self.greater_than = greater_than12    def add(self, count=1, greater_than=False, at_least=False):13        if count >= 0:14            count = self.count + count15            gt = False16            al = self.at_least or self.greater_than or at_least or greater_than17            if self.greater_than and greater_than:18                count += 219            elif self.greater_than or greater_than:20                count += 121            self.greater_than = gt22            self.at_least = al23            self.count = count24    def set(self, count=0, greater_than=False, at_least=False):25        self.count = count26        self.greater_than = greater_than27        self.at_least = at_least28    def __add__(self, other):29        try:30            return MaybeCounter(self.count + int(other),31                                at_least=self.at_least,32                                greater_than=self.greater_than)33        except TypeError:34            pass35        count = self.count + other.count36        greater_than = False37        at_least = self.at_least or self.greater_than or other.at_least or other.greater_than38        if self.greater_than and other.greater_than:39            count += 240        elif self.greater_than or other.greater_than:41            count += 142        return MaybeCounter(count, at_least=at_least, greater_than=greater_than)43    def __sub__(self, other):44        try:45            return MaybeCounter(self.count - int(other),46                                at_least=self.at_least,47                                greater_than=self.greater_than)48        except TypeError:49            pass50        count = self.count - other.count51        greater_than = False52        at_least = self.at_least or self.greater_than or other.at_least or other.greater_than53        if self.greater_than and not other.greater_than:54            count += 155            if other.at_least:56                at_least = False57        elif other.greater_than and not self.greater_than:58            count -= 159            if self.at_least:60                at_least = False61        return MaybeCounter(count, at_least=at_least, greater_than=greater_than)62    def __bool__(self):63        return self.count > 0 or self.greater_than64    def gt(self, other: int):65        if self.count > other:66            return 167        elif self.count == other:68            if self.greater_than:69                return 170            elif self.at_least:71                return 072            else:73                return -174        elif self.GREATER_THAN_LIMIT and self.greater_than and self.count + self.GREATER_THAN_LIMIT >= other:75            return 076        elif self.GREATER_THAN_LIMIT and self.at_least and self.count + self.GREATER_THAN_LIMIT - 1 >= other:77            return 078        return -179    def eq(self, other: int):80        """81        :param other:82        :return: 1=exactly true; 0=maybe/possibly true83        """84        if self.count == other:85            if self.greater_than:86                return -187            elif self.at_least:88                return 089            else:90                return 191        elif self.GREATER_THAN_LIMIT:92            if self.greater_than and self.count < other <= self.count + self.GREATER_THAN_LIMIT:93                return 094            elif self.at_least and self.count - 1 < other <= self.count - 1 + self.GREATER_THAN_LIMIT:95                return 096            else:97                return -198        else:99            return -1100    def __str__(self):101        return '{}{}'.format(102            '>' if self.greater_than else '>=' if self.at_least else '',103            self.count104        )105    def __repr__(self):106        return '{}{}'.format(107            '>' if self.greater_than else '>=' if self.at_least else '',108            self.count...test_new_model.py
Source:test_new_model.py  
1from autofit.database import query as q2class TestCombination:3    def test_simple(4            self,5            less_than,6            greater_than,7            simple_and8    ):9        assert (q.Q(10            "a",11            less_than12        ) & q.Q(13            "a",14            greater_than15        )).query == simple_and.query16    def test_second_level(17            self,18            less_than,19            greater_than,20            second_level21    ):22        first = q.Q("a", less_than)23        second = q.Q(24            'a',25            q.Q('b', greater_than)26        )27        assert (first & second).query == second_level.query28    def test_complicated(29            self,30            less_than,31            greater_than32    ):33        first = q.Q(34            "a",35            q.Q(36                "b",37                q.And(38                    q.Q(39                        "c",40                        less_than41                    ),42                    greater_than43                )44            )45        )46        second = q.Q(47            "a",48            q.Q(49                "b",50                q.Q(51                    "c",52                    greater_than53                )54            )55        )56        combined = q.Q(57            "a",58            q.Q(59                "b",60                q.And(61                    q.Q(62                        "c",63                        q.And(64                            less_than,65                            greater_than66                        )67                    ),68                    greater_than69                )70            )71        )...conftest.py
Source:conftest.py  
...9    )10@pytest.fixture(11    name="greater_than"12)13def make_greater_than():14    return q.V(15        ">", 016    )17@pytest.fixture(18    name="simple_and"19)20def make_simple_and(21        less_than,22        greater_than23):24    return q.Q(25        "a",26        q.And(27            less_than,...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
