webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Public Member Functions | |
def | __init__ (self, search_string) |
def | equals (self, rhs) |
def | __repr__ (self) |
![]() | |
def | equals (self, rhs) |
def | __eq__ (self, rhs) |
def | __ne__ (self, rhs) |
Comparison class used to check whether a substring exists in a string parameter. This can be useful in mocking a database with SQL passed in as a string parameter, for example. Example: mock_dao.RunQuery(StrContains('IN (1, 2, 4, 5)')).AndReturn(mock_result)
def mox.StrContains.__init__ | ( | self, | |
search_string | |||
) |
Initialize. Args: # search_string: the string you are searching for search_string: str
def mox.StrContains.__repr__ | ( | self | ) |
def mox.StrContains.equals | ( | self, | |
rhs | |||
) |
Check to see if the search_string is contained in the rhs string. Args: # rhs: the right hand side of the test rhs: object Returns: bool