summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2018-12-01 07:26:45 -0800
committerBob Halley <halley@dnspython.org>2018-12-01 07:26:45 -0800
commit505409b970cc62bb777293671b3f943f9fa579b6 (patch)
treed9445ddad6c8b6fa53c19b5b76b8aa542ca60db1 /tests
parentb6ea7d9ffcd36657b07d237215c78d2e17f394b4 (diff)
downloaddnspython-505409b970cc62bb777293671b3f943f9fa579b6.tar.gz
update copyright
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile2
-rw-r--r--tests/test_bugs.py2
-rw-r--r--tests/test_dnssec.py2
-rw-r--r--tests/test_edns.py2
-rw-r--r--tests/test_exceptions.py2
-rw-r--r--tests/test_flags.py2
-rw-r--r--tests/test_generate.py2
-rw-r--r--tests/test_grange.py2
-rw-r--r--tests/test_message.py2
-rw-r--r--tests/test_name.py2
-rw-r--r--tests/test_namedict.py2
-rw-r--r--tests/test_nsec3.py2
-rw-r--r--tests/test_ntoaaton.py2
-rw-r--r--tests/test_rdata.py2
-rw-r--r--tests/test_rdtypeandclass.py2
-rw-r--r--tests/test_resolver.py2
-rw-r--r--tests/test_rrset.py2
-rw-r--r--tests/test_set.py2
-rw-r--r--tests/test_tokenizer.py2
-rw-r--r--tests/test_update.py2
-rw-r--r--tests/test_zone.py2
21 files changed, 42 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 1524552..540e27c 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_bugs.py b/tests/test_bugs.py
index 8d509a5..b3b47eb 100644
--- a/tests/test_bugs.py
+++ b/tests/test_bugs.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2006-2017 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_dnssec.py b/tests/test_dnssec.py
index bec6ede..c87862a 100644
--- a/tests/test_dnssec.py
+++ b/tests/test_dnssec.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_edns.py b/tests/test_edns.py
index 01dfdda..c39065c 100644
--- a/tests/test_edns.py
+++ b/tests/test_edns.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# -*- coding: utf-8
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
diff --git a/tests/test_exceptions.py b/tests/test_exceptions.py
index 6c4d016..caaf88a 100644
--- a/tests/test_exceptions.py
+++ b/tests/test_exceptions.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_flags.py b/tests/test_flags.py
index 0a603ff..375b0e1 100644
--- a/tests/test_flags.py
+++ b/tests/test_flags.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_generate.py b/tests/test_generate.py
index 607a5c1..592e5b8 100644
--- a/tests/test_generate.py
+++ b/tests/test_generate.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_grange.py b/tests/test_grange.py
index 73e065b..d52b855 100644
--- a/tests/test_grange.py
+++ b/tests/test_grange.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_message.py b/tests/test_message.py
index 81738e8..a6f39a2 100644
--- a/tests/test_message.py
+++ b/tests/test_message.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_name.py b/tests/test_name.py
index f3f04c3..0972972 100644
--- a/tests/test_name.py
+++ b/tests/test_name.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# -*- coding: utf-8
# Copyright (C) 2003-2017 Nominum, Inc.
#
diff --git a/tests/test_namedict.py b/tests/test_namedict.py
index 6700aec..d90cbfa 100644
--- a/tests/test_namedict.py
+++ b/tests/test_namedict.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_nsec3.py b/tests/test_nsec3.py
index 9fd9e7f..019dc48 100644
--- a/tests/test_nsec3.py
+++ b/tests/test_nsec3.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2006-2017 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_ntoaaton.py b/tests/test_ntoaaton.py
index e348049..a2c4d59 100644
--- a/tests/test_ntoaaton.py
+++ b/tests/test_ntoaaton.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_rdata.py b/tests/test_rdata.py
index 9eba49d..f4898c1 100644
--- a/tests/test_rdata.py
+++ b/tests/test_rdata.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2006, 2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_rdtypeandclass.py b/tests/test_rdtypeandclass.py
index 0f7bac2..5d940a0 100644
--- a/tests/test_rdtypeandclass.py
+++ b/tests/test_rdtypeandclass.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_resolver.py b/tests/test_resolver.py
index 4bc368f..1738c1a 100644
--- a/tests/test_resolver.py
+++ b/tests/test_resolver.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2017 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_rrset.py b/tests/test_rrset.py
index 2bf4c09..a82fb5c 100644
--- a/tests/test_rrset.py
+++ b/tests/test_rrset.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_set.py b/tests/test_set.py
index e85c5f6..b97ff66 100644
--- a/tests/test_set.py
+++ b/tests/test_set.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py
index d833fea..8a6636c 100644
--- a/tests/test_tokenizer.py
+++ b/tests/test_tokenizer.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_update.py b/tests/test_update.py
index 56ce31d..8387887 100644
--- a/tests/test_update.py
+++ b/tests/test_update.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its
diff --git a/tests/test_zone.py b/tests/test_zone.py
index e917fa1..71b8751 100644
--- a/tests/test_zone.py
+++ b/tests/test_zone.py
@@ -1,3 +1,5 @@
+# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
+
# Copyright (C) 2003-2007, 2009-2011 Nominum, Inc.
#
# Permission to use, copy, modify, and distribute this software and its