Skip to content

Commit 7f8a19f

Browse files
committed
✅ feat: added tests for the new image_search endpoint
Signed-off-by: saif <[email protected]>
1 parent f2285d4 commit 7f8a19f

File tree

6 files changed

+551
-0
lines changed

6 files changed

+551
-0
lines changed

tests/config/.gitkeep

Whitespace-only changes.

tests/config/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
2+
# -*- coding: utf-8 -*-
3+
4+
"""
5+
mapillary.tests.config.__init__
6+
~~~~~~~~~~~~~~~~~~~~~~~~~
7+
8+
This module contains the tests for the config module from the src.
9+
10+
- Copyright: (c) 2021 Facebook
11+
- License: MIT LICENSE
12+
"""
13+
14+
from . import api # noqa: F401

tests/config/api/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
2+
# -*- coding: utf-8 -*-
3+
4+
"""
5+
mapillary.tests.config.api.__init__
6+
7+
This package contains all the API v4 endpoints provided with the Mapillary Python SDK.
8+
9+
- Copyright: (c) 2021 Facebook
10+
- License: MIT LICENSE
11+
"""
12+
13+
from . import test_vector_tiles # noqa: F401
14+
from . import test_entities # noqa: F401
15+
from . import test_general # noqa: F401

0 commit comments

Comments
 (0)