You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/pkginfo/tests/__init__.py

37 lines
1.3 KiB

# requirements
def _checkSample(testcase, installed):
try:
import pkg_resources
except ImportError: # no setuptools :(
pass
else:
version = pkg_resources.require('pkginfo')[0].version
testcase.assertEqual(installed.version, version)
testcase.assertEqual(installed.name, 'pkginfo')
testcase.assertEqual(installed.keywords,
'distribution sdist installed metadata' )
testcase.assertEqual(list(installed.supported_platforms), [])
def _checkClassifiers(testcase, installed):
testcase.assertEqual(list(installed.classifiers),
[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
])
def _defaultMetadataVersion():
return '2.1'