summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/__init__.py5
-rw-r--r--test/git/__init__.py5
-rw-r--r--test/git/test_actor.py6
-rw-r--r--test/git/test_blob.py6
-rw-r--r--test/git/test_commit.py6
-rw-r--r--test/git/test_diff.py6
-rw-r--r--test/git/test_git.py6
-rw-r--r--test/git/test_head.py6
-rw-r--r--test/git/test_repo.py6
-rw-r--r--test/git/test_stats.py6
-rw-r--r--test/git/test_tag.py6
-rw-r--r--test/git/test_tree.py6
-rw-r--r--test/git/test_utils.py6
-rw-r--r--test/testlib/__init__.py6
-rw-r--r--test/testlib/asserts.py6
-rw-r--r--test/testlib/helper.py6
16 files changed, 94 insertions, 0 deletions
diff --git a/test/__init__.py b/test/__init__.py
index e69de29b..9255d20b 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -0,0 +1,5 @@
+# __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
diff --git a/test/git/__init__.py b/test/git/__init__.py
index e69de29b..9255d20b 100644
--- a/test/git/__init__.py
+++ b/test/git/__init__.py
@@ -0,0 +1,5 @@
+# __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
diff --git a/test/git/test_actor.py b/test/git/test_actor.py
index 7468c3ff..3bb92a09 100644
--- a/test/git/test_actor.py
+++ b/test/git/test_actor.py
@@ -1,3 +1,9 @@
+# test_actor.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
from test.testlib import *
from git import *
diff --git a/test/git/test_blob.py b/test/git/test_blob.py
index 05d68285..b7f44ff0 100644
--- a/test/git/test_blob.py
+++ b/test/git/test_blob.py
@@ -1,3 +1,9 @@
+# test_blob.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 time
from test.testlib import *
from git import *
diff --git a/test/git/test_commit.py b/test/git/test_commit.py
index 4504a360..ac807dc2 100644
--- a/test/git/test_commit.py
+++ b/test/git/test_commit.py
@@ -1,3 +1,9 @@
+# test_commit.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
+
from test.testlib import *
from git import *
diff --git a/test/git/test_diff.py b/test/git/test_diff.py
index 7b24cd97..9b7e9c73 100644
--- a/test/git/test_diff.py
+++ b/test/git/test_diff.py
@@ -1,3 +1,9 @@
+# test_diff.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
+
from test.testlib import *
from git import *
diff --git a/test/git/test_git.py b/test/git/test_git.py
index 0c074ec3..cc732032 100644
--- a/test/git/test_git.py
+++ b/test/git/test_git.py
@@ -1,3 +1,9 @@
+# test_git.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
from test.testlib import *
from git import Git, GitCommandError
diff --git a/test/git/test_head.py b/test/git/test_head.py
index 0e5592d3..6d32b2d3 100644
--- a/test/git/test_head.py
+++ b/test/git/test_head.py
@@ -1,3 +1,9 @@
+# test_head.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
+
from test.testlib import *
from git import *
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index 67008d72..46c5d00c 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -1,3 +1,9 @@
+# test_repo.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
import time
from test.testlib import *
diff --git a/test/git/test_stats.py b/test/git/test_stats.py
index abe129a8..4546eea1 100644
--- a/test/git/test_stats.py
+++ b/test/git/test_stats.py
@@ -1,3 +1,9 @@
+# test_stats.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
+
from test.testlib import *
from git import *
diff --git a/test/git/test_tag.py b/test/git/test_tag.py
index 30311f52..6626ec65 100644
--- a/test/git/test_tag.py
+++ b/test/git/test_tag.py
@@ -1,3 +1,9 @@
+# test_tag.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
+
from mock import *
from test.testlib import *
from git import *
diff --git a/test/git/test_tree.py b/test/git/test_tree.py
index e91e57ba..2c7fdd58 100644
--- a/test/git/test_tree.py
+++ b/test/git/test_tree.py
@@ -1,3 +1,9 @@
+# test_tree.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
+
from test.testlib import *
from git import *
diff --git a/test/git/test_utils.py b/test/git/test_utils.py
index b8fcfb3e..e6baf3ea 100644
--- a/test/git/test_utils.py
+++ b/test/git/test_utils.py
@@ -1,3 +1,9 @@
+# test_utils.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
from test.testlib import *
from git import *
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__)))