~mysql/myconnpy/1.0

« back to all changes in this revision

Viewing changes to unittests.py

  • Committer: Geert Vanderkelen
  • Date: 2009-11-26 16:14:48 UTC
  • Revision ID: geert.vanderkelen@sun.com-20091126161448-k6d2v7cxeteai13b
Copyright/License: some changes how they are included in source

* Making sure that there are docstrings in all module source files, and
using hashes to comment the license notice.
* Adding EXCEPTIONS-CLIENT with the FOSS License Exception, pointing to
the www.mysql.com website.
* Some more updates here and there, but nothing to the code itself.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
 
 
4
 
"""
5
 
unittests.py launches unittests
 
3
# MySQL Connector/Python - MySQL driver written in Python.
 
4
# Copyright 2009 Sun Microsystems, Inc. All rights reserved
 
5
# Use is subject to license terms. (See COPYING)
 
6
 
 
7
# This program is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation.
 
10
 
11
# There are special exceptions to the terms and conditions of the GNU
 
12
# General Public License as it is applied to this software. View the
 
13
# full text of the exception in file EXCEPTIONS-CLIENT in the directory
 
14
# of this software distribution or see the FOSS License Exception at
 
15
# www.mysql.com.
 
16
 
17
# This program is distributed in the hope that it will be useful,
 
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
# GNU General Public License for more details.
 
21
 
22
# You should have received a copy of the GNU General Public License
 
23
# along with this program; if not, write to the Free Software
 
24
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
25
 
 
26
"""Script for running unittests
6
27
 
7
28
unittests.py launches all or selected unittests.
8
29