summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 11:57:07 +0100
committerGeorg Brandl <georg@python.org>2009-01-03 11:57:07 +0100
commit584e85e0759f969b22e72d954e5bded3bcc41682 (patch)
tree837094985a916d2ad71ce5d24ba572f77e9a2c8c /tests
parent68b5e391be076ad654fa2d6451604624990493fe (diff)
downloadsphinx-584e85e0759f969b22e72d954e5bded3bcc41682.tar.gz
Switch copyright and license tags to single style. Add contributor
names in AUTHORS instead, and add the license of etree13 to LICENSE.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run.py4
-rw-r--r--tests/test_application.py4
-rw-r--r--tests/test_autodoc.py4
-rw-r--r--tests/test_build.py4
-rw-r--r--tests/test_config.py4
-rw-r--r--tests/test_coverage.py4
-rw-r--r--tests/test_env.py4
-rw-r--r--tests/test_i18n.py4
-rw-r--r--tests/test_markup.py4
-rw-r--r--tests/test_quickstart.py4
-rw-r--r--tests/util.py4
11 files changed, 22 insertions, 22 deletions
diff --git a/tests/run.py b/tests/run.py
index f67a3432..4cc23442 100755
--- a/tests/run.py
+++ b/tests/run.py
@@ -6,8 +6,8 @@
This script runs the Sphinx unit test suite.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/tests/test_application.py b/tests/test_application.py
index e00e990f..6425e275 100644
--- a/tests/test_application.py
+++ b/tests/test_application.py
@@ -5,8 +5,8 @@
Test the Sphinx class.
- :copyright: 2008 by Benjamin Peterson.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from StringIO import StringIO
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py
index ee3fdf1d..752c0725 100644
--- a/tests/test_autodoc.py
+++ b/tests/test_autodoc.py
@@ -6,8 +6,8 @@
Test the autodoc extension. This tests mainly the RstGenerator; the auto
directives are tested in a test source file translated by test_build.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_build.py b/tests/test_build.py
index b48cccc3..aed56a8c 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -5,8 +5,8 @@
Test the entire build process with the test root.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/tests/test_config.py b/tests/test_config.py
index 57d1936b..bc5ab8a0 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -6,8 +6,8 @@
Test the sphinx.config.Config class and its handling in the
Application class.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_coverage.py b/tests/test_coverage.py
index 82279f50..369788a1 100644
--- a/tests/test_coverage.py
+++ b/tests/test_coverage.py
@@ -5,8 +5,8 @@
Test the coverage builder.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import pickle
diff --git a/tests/test_env.py b/tests/test_env.py
index ec651957..390c6999 100644
--- a/tests/test_env.py
+++ b/tests/test_env.py
@@ -5,8 +5,8 @@
Test the BuildEnvironment class.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_i18n.py b/tests/test_i18n.py
index da0af246..94648727 100644
--- a/tests/test_i18n.py
+++ b/tests/test_i18n.py
@@ -5,8 +5,8 @@
Test locale features.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_markup.py b/tests/test_markup.py
index f1125103..5fd70f05 100644
--- a/tests/test_markup.py
+++ b/tests/test_markup.py
@@ -5,8 +5,8 @@
Test various Sphinx-specific markup extensions.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py
index a76a1cdf..4c2d0f3e 100644
--- a/tests/test_quickstart.py
+++ b/tests/test_quickstart.py
@@ -5,8 +5,8 @@
Test the sphinx.quickstart module.
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/tests/util.py b/tests/util.py
index c4c53592..2cd2c031 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -3,8 +3,8 @@
Sphinx test suite utilities
~~~~~~~~~~~~~~~~~~~~~~~~~~~
- :copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
import sys