~mysql/myconnpy/1.0

« back to all changes in this revision

Viewing changes to support/tests/__init__.py

  • Committer: Geert Vanderkelen
  • Date: 2013-02-13 10:29:03 UTC
  • Revision ID: geert.vanderkelen@oracle.com-20130213102903-1ygr4vljt775jssh
Small corrections and adding more release tests

Added some tests to check whether the version
is correctly set in files which mention the
Connector/Python version, such as version.py
and ChangeLog.

These supporting unittests can be executed
by `python support/tests/run.py`

We also corrected some copyrights with the
correct year in files that need to have always
the year of release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
ACTIVE_TESTS = [
34
34
    'support.tests.test_distribution',
 
35
    'support.tests.test_version',
35
36
]
36
37
 
 
38
LOGGER_NAME = "myconnpy_support_tests"
 
39
CONNECTOR_VERSION = ()
 
40
 
37
41
class SupportTests(unittest.TestCase):
38
42
    pass
39
43