From 4d835edaad8dfdc35a24a7c6461b71995d78762f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Nov 12 2011 19:42:50 +0000 Subject: Make of the tests a module This way they can be called from the tests.py script --- diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..a0ea755 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1,20 @@ +#-*- coding: utf-8 -*- + +# 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., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# (C) 2011 - Pierre-Yves Chibon + + +""" Makes of the test folder a module. """