
Ensure CSW interaction works when skip_caps=True by defaulting
to default URL (i.e. Capabilities OperationsMetadata is not scanned
for the appropriate URL since skip_caps=True.

Imports

    >>> from __future__ import (absolute_import, division, print_function)
    >>> from owslib.csw import CatalogueServiceWeb as cs

Properties

    >>> c = cs('http://demo.pycsw.org/cite/csw', skip_caps=True)

GetRecords

    >>> c.getrecords2()
    >>> c.results.get('returned') > 0
    True
    >>> c.results.get('nextrecord') > 0
    True
    >>> c.results.get('matches') > 0
    True
