diff options
Diffstat (limited to 'test/testlib')
-rw-r--r-- | test/testlib/__init__.py | 6 | ||||
-rw-r--r-- | test/testlib/asserts.py | 6 | ||||
-rw-r--r-- | test/testlib/helper.py | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py index 3662435d..bfa38d6e 100644 --- a/test/testlib/__init__.py +++ b/test/testlib/__init__.py @@ -1,3 +1,9 @@ +# __init__.py +# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# +# This module is part of GitPython and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php + import inspect from mock import * from asserts import * diff --git a/test/testlib/asserts.py b/test/testlib/asserts.py index 33dd843b..5021e7c0 100644 --- a/test/testlib/asserts.py +++ b/test/testlib/asserts.py @@ -1,3 +1,9 @@ +# asserts.py +# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# +# This module is part of GitPython and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php + import re import unittest from nose import tools diff --git a/test/testlib/helper.py b/test/testlib/helper.py index ccc7f0ac..3d6b33dc 100644 --- a/test/testlib/helper.py +++ b/test/testlib/helper.py @@ -1,3 +1,9 @@ +# helper.py +# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors +# +# This module is part of GitPython and is released under +# the BSD License: http://www.opensource.org/licenses/bsd-license.php + import os GIT_REPO = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) |