HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //usr/lib/python3/dist-packages/hamcrest/library/text/substringmatcher.py
from abc import ABCMeta, abstractmethod

from hamcrest.core.base_matcher import BaseMatcher
from hamcrest.core.description import Description

__author__ = "Jon Reid"
__copyright__ = "Copyright 2011 hamcrest.org"
__license__ = "BSD, see License.txt"


class SubstringMatcher(BaseMatcher[str], metaclass=ABCMeta):
    def __init__(self, substring) -> None:
        if not isinstance(substring, str):
            raise TypeError(self.__class__.__name__ + " requires string")
        self.substring = substring

    def describe_to(self, description: Description) -> None:
        description.append_text("a string ").append_text(self.relationship()).append_text(
            " "
        ).append_description_of(self.substring)

    @abstractmethod
    def relationship(self):
        ...