about summary refs log tree commit homepage
path: root/test
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-30 20:42:12 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-30 20:42:12 +0000
commitddd5c9a46cfbb471f83a50d0a890a55628c22738 (patch)
treed8fbc0cbca12883202224dec4ded0333b4b291c8 /test
parent7d0f10c2427f37f2f08366c5d6add01973238f1a (diff)
downloadunicorn-ddd5c9a46cfbb471f83a50d0a890a55628c22738.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@267 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'test')
-rw-r--r--test/test_command.rb5
-rw-r--r--test/test_conditional.rb5
-rw-r--r--test/test_configurator.rb5
-rw-r--r--test/test_debug.rb5
-rw-r--r--test/test_handlers.rb5
-rw-r--r--test/test_http11.rb5
-rw-r--r--test/test_redirect_handler.rb6
-rw-r--r--test/test_request_progress.rb5
-rw-r--r--test/test_response.rb5
-rw-r--r--test/test_stats.rb5
-rw-r--r--test/test_uriclassifier.rb5
-rw-r--r--test/test_ws.rb5
-rw-r--r--test/testhelp.rb6
13 files changed, 67 insertions, 0 deletions
diff --git a/test/test_command.rb b/test/test_command.rb
index 9b8e760..4db9c1f 100644
--- a/test/test_command.rb
+++ b/test/test_command.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'mongrel'
diff --git a/test/test_conditional.rb b/test/test_conditional.rb
index 1a56b1a..511570e 100644
--- a/test/test_conditional.rb
+++ b/test/test_conditional.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'net/http'
diff --git a/test/test_configurator.rb b/test/test_configurator.rb
index 1056a50..4e4d963 100644
--- a/test/test_configurator.rb
+++ b/test/test_configurator.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'mongrel'
diff --git a/test/test_debug.rb b/test/test_debug.rb
index d210246..950ff84 100644
--- a/test/test_debug.rb
+++ b/test/test_debug.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'fileutils'
 FileUtils.mkdir_p "log/mongrel_debug"
diff --git a/test/test_handlers.rb b/test/test_handlers.rb
index bb5b7c5..7df0f15 100644
--- a/test/test_handlers.rb
+++ b/test/test_handlers.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'net/http'
diff --git a/test/test_http11.rb b/test/test_http11.rb
index 3d25f3a..adf88b7 100644
--- a/test/test_http11.rb
+++ b/test/test_http11.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'http11'
diff --git a/test/test_redirect_handler.rb b/test/test_redirect_handler.rb
index a1fe67d..dc81647 100644
--- a/test/test_redirect_handler.rb
+++ b/test/test_redirect_handler.rb
@@ -1,3 +1,9 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
+
 require 'test/unit'
 require 'mongrel'
 require 'net/http'
diff --git a/test/test_request_progress.rb b/test/test_request_progress.rb
index da2e72e..5e45cea 100644
--- a/test/test_request_progress.rb
+++ b/test/test_request_progress.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'mongrel'
diff --git a/test/test_response.rb b/test/test_response.rb
index d277975..b68c1ef 100644
--- a/test/test_response.rb
+++ b/test/test_response.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'mongrel'
diff --git a/test/test_stats.rb b/test/test_stats.rb
index 48ac9e5..a0f9c1b 100644
--- a/test/test_stats.rb
+++ b/test/test_stats.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'mongrel/stats'
diff --git a/test/test_uriclassifier.rb b/test/test_uriclassifier.rb
index d132d7a..f7c2608 100644
--- a/test/test_uriclassifier.rb
+++ b/test/test_uriclassifier.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'net/http'
diff --git a/test/test_ws.rb b/test/test_ws.rb
index 974a00c..09deb5b 100644
--- a/test/test_ws.rb
+++ b/test/test_ws.rb
@@ -1,3 +1,8 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
 
 require 'test/unit'
 require 'net/http'
diff --git a/test/testhelp.rb b/test/testhelp.rb
index b5d0a9b..78956a9 100644
--- a/test/testhelp.rb
+++ b/test/testhelp.rb
@@ -1,3 +1,9 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
+
 def redirect_test_io
   orig_err = STDERR.dup
   orig_out = STDOUT.dup