Clarify copyright: correct owners and dates.

This commit is contained in:
Jonathan Lange
2011-01-22 11:59:28 -06:00
31 changed files with 48 additions and 29 deletions

17
LICENSE
View File

@@ -1,6 +1,21 @@
Copyright (c) 2008-2010 Jonathan M. Lange <jml@mumak.net> and the testtools
Copyright (c) 2008-2011 Jonathan M. Lange <jml@mumak.net> and the testtools
authors.
The testtools authors are:
* Canonical Ltd
* Twisted Matrix Labs
* Jonathan Lange
* Robert Collins
* Andrew Bennetts
* Benjamin Peterson
* Jamu Kakar
* James Westby
* Martin [gz]
* Michael Hudson-Doyle
* Aaron Bentley
and are collectively referred to as "testtools developers".
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2011 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008-2011 testtools developers. See LICENSE for details.
"""Extensions to the standard Python unittest library."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Evil reactor-spinning logic for running Twisted tests.

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2010 testtools developers. See LICENSE for details.
# Copyright (c) 2008-2011 testtools developers. See LICENSE for details.
"""Compatibility support for python 2 and 3."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2010 testtools developers. See LICENSE for details.
"""Content - a MIME-like Content object."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2010 testtools developers. See LICENSE for details.
"""ContentType - a MIME Content Type."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Individual test case execution for tests that return Deferreds.

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
__all__ = [
'try_import',

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009-2011 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2011 testtools developers. See LICENSE for details.
"""Matchers, a way to express complex assertions outside the testcase.

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Helpers for monkey-patching Python code."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009 testtools developers. See LICENSE for details.
"""python -m testtools.run testspec [testspec...]

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2010 testtools developers. See LICENSE for details.
"""Individual test case execution."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2011 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008-2011 testtools developers. See LICENSE for details.
"""Test case related stuff."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009 testtools developers. See LICENSE for details.
"""Test result objects."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2010 testtools developers. See LICENSE for details.
"""Doubles of test result objects, useful for testing unittest code."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008 testtools developers. See LICENSE for details.
"""Test results and related things."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008 testtools developers. See LICENSE for details.
"""Helpers for tests."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008-2010 testtools developers. See LICENSE for details.
import unittest
from testtools import TestCase

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008 testtools developers. See LICENSE for details.
from testtools import TestCase
from testtools.matchers import Equals, MatchesException, Raises

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Tests for the DeferredRunTest single test execution logic."""

View File

@@ -1,3 +1,5 @@
# Copyright (c) 2010 testtools developers. See LICENSE for details.
import unittest
from testtools import (

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
from testtools import TestCase
from testtools.helpers import (

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008-2010 testtools developers. See LICENSE for details.
"""Tests for matchers."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Testtools authors. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Tests for the test runner logic."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009-2010 testtools developers. See LICENSE for details.
"""Tests for the RunTest single test execution logic."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2010 testtools developers. See LICENSE for details.
"""Tests for the evil Twisted reactor-spinning we do."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008 testtools developers. See LICENSE for details.
"""Test TestResults and related things."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009 testtools developers. See LICENSE for details.
"""Test ConcurrentTestSuite and related things."""

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2008-2010 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2008-2010 testtools developers. See LICENSE for details.
"""Tests for extensions to the base test library."""

View File

@@ -1,3 +1,5 @@
# Copyright (c) 2011 testtools developers. See LICENSE for details.
from __future__ import with_statement
from testtools import (

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2009 Jonathan M. Lange. See LICENSE for details.
# Copyright (c) 2009 testtools developers. See LICENSE for details.
"""Test suites and related things."""