summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGabriel Falcao <gabriel@nacaolivre.org>2013-02-19 13:19:47 -0500
committerGabriel Falcao <gabriel@nacaolivre.org>2013-02-19 13:19:47 -0500
commitf2a169b1f9efe2a7ddb4f1129d097c071adc49cc (patch)
treeb647d92654f2fb20b06e0432d31f7391c38ebe64 /tests
parentfc7c06d55127b9b1b229544e125ed313c381d974 (diff)
downloadhttpretty-f2a169b1f9efe2a7ddb4f1129d097c071adc49cc.tar.gz
bumping to 0.5.10 + updating readme, changelog and adding a contributors list
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/__init__.py2
-rw-r--r--tests/functional/test_bypass.py2
-rw-r--r--tests/functional/test_debug.py2
-rw-r--r--tests/functional/test_httplib2.py2
-rw-r--r--tests/functional/test_requests.py2
-rw-r--r--tests/functional/test_urllib2.py2
-rw-r--r--tests/functional/testserver.py2
-rw-r--r--tests/unit/__init__.py2
-rw-r--r--tests/unit/test_httpretty.py2
9 files changed, 9 insertions, 9 deletions
diff --git a/tests/functional/__init__.py b/tests/functional/__init__.py
index fee0020..8589d02 100644
--- a/tests/functional/__init__.py
+++ b/tests/functional/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_bypass.py b/tests/functional/test_bypass.py
index 80c4aa0..01a57ae 100644
--- a/tests/functional/test_bypass.py
+++ b/tests/functional/test_bypass.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_debug.py b/tests/functional/test_debug.py
index edf2ad8..2f2f23e 100644
--- a/tests/functional/test_debug.py
+++ b/tests/functional/test_debug.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_httplib2.py b/tests/functional/test_httplib2.py
index 944f569..2f927fa 100644
--- a/tests/functional/test_httplib2.py
+++ b/tests/functional/test_httplib2.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_requests.py b/tests/functional/test_requests.py
index 7757dea..4a64eb9 100644
--- a/tests/functional/test_requests.py
+++ b/tests/functional/test_requests.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/test_urllib2.py b/tests/functional/test_urllib2.py
index 0d69753..9fc0f47 100644
--- a/tests/functional/test_urllib2.py
+++ b/tests/functional/test_urllib2.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/functional/testserver.py b/tests/functional/testserver.py
index f45cf22..6a30593 100644
--- a/tests/functional/testserver.py
+++ b/tests/functional/testserver.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py
index 0554510..a5df75e 100644
--- a/tests/unit/__init__.py
+++ b/tests/unit/__init__.py
@@ -1,7 +1,7 @@
# #!/usr/bin/env python
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
diff --git a/tests/unit/test_httpretty.py b/tests/unit/test_httpretty.py
index 8ce97b7..d8e2170 100644
--- a/tests/unit/test_httpretty.py
+++ b/tests/unit/test_httpretty.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# <HTTPretty - HTTP client mock for Python>
-# Copyright (C) <2011-2012> Gabriel Falcão <gabriel@nacaolivre.org>
+# Copyright (C) <2011-2013> Gabriel Falcão <gabriel@nacaolivre.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation