diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-02-23 00:43:31 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-02-23 00:43:31 +0100 |
| commit | df570f00f611073a20796128ca167474aa7826fc (patch) | |
| tree | a043bcd59a20404456a4c976845054dbd8575ddc /gitdb/test/db | |
| parent | 6d315b8a92ae2cba936bd38e433592383f42cc10 (diff) | |
| download | gitdb-df570f00f611073a20796128ca167474aa7826fc.tar.gz | |
preprended all modules with licensing information
Diffstat (limited to 'gitdb/test/db')
| -rw-r--r-- | gitdb/test/db/__init__.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/lib.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/test_git.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/test_loose.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/test_mem.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/test_pack.py | 4 | ||||
| -rw-r--r-- | gitdb/test/db/test_ref.py | 4 |
7 files changed, 28 insertions, 0 deletions
diff --git a/gitdb/test/db/__init__.py b/gitdb/test/db/__init__.py index e69de29..8a681e4 100644 --- a/gitdb/test/db/__init__.py +++ b/gitdb/test/db/__init__.py @@ -0,0 +1,4 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php diff --git a/gitdb/test/db/lib.py b/gitdb/test/db/lib.py index 0080d91..416c8c5 100644 --- a/gitdb/test/db/lib.py +++ b/gitdb/test/db/lib.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php """Base classes for object db testing""" from gitdb.test.lib import ( with_rw_directory, diff --git a/gitdb/test/db/test_git.py b/gitdb/test/db/test_git.py index bcab1fc..3101163 100644 --- a/gitdb/test/db/test_git.py +++ b/gitdb/test/db/test_git.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php from lib import * from gitdb.exc import BadObject from gitdb.db import GitDB diff --git a/gitdb/test/db/test_loose.py b/gitdb/test/db/test_loose.py index 8e8a9bf..ee2d78d 100644 --- a/gitdb/test/db/test_loose.py +++ b/gitdb/test/db/test_loose.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php from lib import * from gitdb.db import LooseObjectDB from gitdb.exc import BadObject diff --git a/gitdb/test/db/test_mem.py b/gitdb/test/db/test_mem.py index 4a9b7ee..188cb0a 100644 --- a/gitdb/test/db/test_mem.py +++ b/gitdb/test/db/test_mem.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php from lib import * from gitdb.db import ( MemoryDB, diff --git a/gitdb/test/db/test_pack.py b/gitdb/test/db/test_pack.py index 1d0cb96..e8ba6f8 100644 --- a/gitdb/test/db/test_pack.py +++ b/gitdb/test/db/test_pack.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php from lib import * from gitdb.db import PackedDB from gitdb.test.lib import fixture_path diff --git a/gitdb/test/db/test_ref.py b/gitdb/test/db/test_ref.py index af75016..0d8eeeb 100644 --- a/gitdb/test/db/test_ref.py +++ b/gitdb/test/db/test_ref.py @@ -1,3 +1,7 @@ +# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors +# +# This module is part of GitDB and is released under +# the New BSD License: http://www.opensource.org/licenses/bsd-license.php from lib import * from gitdb.db import ReferenceDB |
