aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/debug_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/debug_helper_test.rb')
-rw-r--r--actionpack/test/template/debug_helper_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/template/debug_helper_test.rb b/actionpack/test/template/debug_helper_test.rb
index b90ab5bdf2..42d06bd9ff 100644
--- a/actionpack/test/template/debug_helper_test.rb
+++ b/actionpack/test/template/debug_helper_test.rb
@@ -1,8 +1,8 @@
-class DebugHelperTest < ActionView::TestCase
+require 'active_record_unit'
+class DebugHelperTest < ActionView::TestCase
def test_debug
company = Company.new(name: "firebase")
assert_match "&nbsp; name: firebase", debug(company)
end
-
end