From 1baf1c0c1c44563572d272bedc83849a8710f4b0 Mon Sep 17 00:00:00 2001 From: Santiago Pastorino Date: Sat, 15 May 2010 23:02:09 -0300 Subject: [PATCH] Added missing require, we are using here the bind method defined on active_support/core_ext/proc [#4610 state:committed] --- actionmailer/test/base_test.rb | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb index 5506d62..2dac7bd 100644 --- a/actionmailer/test/base_test.rb +++ b/actionmailer/test/base_test.rb @@ -1,5 +1,6 @@ # encoding: utf-8 require 'abstract_unit' +require 'active_support/core_ext/proc' class BaseTest < ActiveSupport::TestCase # TODO Add some tests for implicity layout render and url helpers -- 1.7.1