aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2012-11-06 19:01:01 +0200
committerGuido Günther <agx@sigxcpu.org>2012-11-23 17:30:31 +0100
commit0a9bf99e2daddcdae4e5c14c938bafe23fe888f5 (patch)
tree1a82a5249af3c025bee3dff4ee80fd5fdc429840 /tests/__init__.py
parent4ed1b43248e7e55656aa592343393a494c7d6f72 (diff)
tests: make tests a Python module
Makes it possible to reuse code between various tests. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 00000000..22e1fc5f
--- /dev/null
+++ b/tests/__init__.py
@@ -0,0 +1,20 @@
+# vim: set fileencoding=utf-8 :
+#
+# (C) 2009, 2010,2011, 2012 Guido Guenther <agx@sigxcpu.org>
+# (C) 2012 Intel Corporation <markus.lehtonen@linux.intel.com>
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+"""Unit tests for git-buildpackage"""
+
+# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·: