domaintools.api.request.Request.where.execute

Here are the examples of the python api domaintools.api.request.Request.where.execute taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: api-python Source File: request.py
    def test_service_exception_if_invalid_options(self):
        """check ServiceException raised if invalid options"""

        try:
            request = Request().where('invalidOptions').execute()
        except ServiceException as e :
            self.assertTrue(True)