[go: up one dir, main page]

File: distlib_tests.py

package info (click to toggle)
distlib 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,252 kB
  • ctags: 3,019
  • sloc: python: 21,062; ansic: 407; sh: 17; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2013 The Python Software Foundation.
# See LICENSE.txt and CONTRIBUTORS.txt.
#
import sys

_ver = sys.version_info[:2]

from test_database import (DataFilesTestCase, TestDatabase, TestDistribution,
                           TestEggInfoDistribution, DepGraphTestCase)
from test_index import PackageIndexTestCase
from test_locators import LocatorTestCase
from test_manifest import ManifestTestCase
from test_markers import MarkersTestCase
from test_metadata import MetadataTestCase, LegacyMetadataTestCase
from test_resources import (ZipResourceTestCase, FileResourceTestCase,
                            CacheTestCase)
from test_scripts import ScriptTestCase
from test_version import (VersionTestCase, CompatibilityTestCase,
                          LegacyVersionTestCase, SemanticVersionTestCase)
from test_wheel import WheelTestCase

if _ver == (2, 6):
    from test_shutil import TestCopyFile, TestMove, TestShutil
    from test_sysconfig import TestSysConfig, MakefileTests
from test_util import (UtilTestCase, ProgressTestCase, FileOpsTestCase,
                       GlobTestCase)