
To allow testing to be restricted to a specific maximum API version. This allows new API tests to be skipped for old servers.
11 lines
259 B
Python
11 lines
259 B
Python
import unittest
|
|
from tests import test_albums, test_photos, test_tags
|
|
|
|
class TestAlbumsV1(test_albums.TestAlbums):
|
|
api_version = 1
|
|
|
|
class TestPhotosV1(test_photos.TestPhotos):
|
|
api_version = 1
|
|
|
|
class TestTagsV1(test_tags.TestTags):
|
|
api_version = 1
|