File: __init__.py

package info (click to toggle)
python-globus-sdk 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,172 kB
  • sloc: python: 35,227; sh: 44; makefile: 35
file content (20 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Common use helpers and utilities for all tests to leverage.
Not so disorganized as a "utils" module and not so refined as a public package.
"""

from .consents import ConsentTest, ScopeRepr, make_consent_forest
from .constants import GO_EP1_ID, GO_EP2_ID
from .globus_responses import register_api_route, register_api_route_fixture_file
from .response_mock import PickleableMockResponse

__all__ = [
    "ConsentTest",
    "GO_EP1_ID",
    "GO_EP2_ID",
    "make_consent_forest",
    "PickleableMockResponse",
    "register_api_route",
    "register_api_route_fixture_file",
    "ScopeRepr",
]