diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-20 11:37:18 -0300 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-04-20 07:45:54 -0700 |
commit | a90a076613c32f952e4d3e1bb7c828572e808145 (patch) | |
tree | 090ad4211b370feaf7f730e54c30b507bf5f44d7 /activesupport | |
parent | d03196c89e92e9b3aa553bf5f7a9bcb23c955025 (diff) | |
download | rails-a90a076613c32f952e4d3e1bb7c828572e808145.tar.gz rails-a90a076613c32f952e4d3e1bb7c828572e808145.tar.bz2 rails-a90a076613c32f952e4d3e1bb7c828572e808145.zip |
Missing requires added
Signed-off-by: Xavier Noria <fxn@hashref.com>
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/testing/setup_and_teardown.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/testing/setup_and_teardown.rb b/activesupport/lib/active_support/testing/setup_and_teardown.rb index 6ce9495cee..d8942c3974 100644 --- a/activesupport/lib/active_support/testing/setup_and_teardown.rb +++ b/activesupport/lib/active_support/testing/setup_and_teardown.rb @@ -1,3 +1,6 @@ +require 'active_support/concern' +require 'active_support/callbacks' + module ActiveSupport module Testing module SetupAndTeardown |