aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-09-28 16:48:59 +0000
committerMichael Koziarski <michael@koziarski.com>2007-09-28 16:48:59 +0000
commitc1bdf027d8d54127e41427e21fabe7ff3e26c6bc (patch)
tree32de9c050a3733544e3b73d72372ba03bf4cd37f /actionpack
parent03f318718e460a553062a2bff4507c8c80725304 (diff)
downloadrails-c1bdf027d8d54127e41427e21fabe7ff3e26c6bc.tar.gz
rails-c1bdf027d8d54127e41427e21fabe7ff3e26c6bc.tar.bz2
rails-c1bdf027d8d54127e41427e21fabe7ff3e26c6bc.zip
Add missing require
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7670 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/test/controller/request_forgery_protection_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/controller/request_forgery_protection_test.rb b/actionpack/test/controller/request_forgery_protection_test.rb
index 0711ecf90c..2166b24aa6 100644
--- a/actionpack/test/controller/request_forgery_protection_test.rb
+++ b/actionpack/test/controller/request_forgery_protection_test.rb
@@ -1,4 +1,5 @@
require File.dirname(__FILE__) + '/../abstract_unit'
+require 'digest/sha1'
ActionController::Routing::Routes.draw do |map|
map.connect ':controller/:action/:id'