aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Newton <newton10471@gmail.com>2013-07-17 11:53:08 -0400
committerMatt Newton <newton10471@gmail.com>2013-07-17 12:57:58 -0400
commitdec8a8ddccae9fb5836853fe38a6861c12861b9f (patch)
tree9ff5a51caa543c663f75b9655f8c509b85e21c92
parent1a58ac60d92110cc9a83c976ac1fbd7bfd071966 (diff)
downloadrails-dec8a8ddccae9fb5836853fe38a6861c12861b9f.tar.gz
rails-dec8a8ddccae9fb5836853fe38a6861c12861b9f.tar.bz2
rails-dec8a8ddccae9fb5836853fe38a6861c12861b9f.zip
fixes plugin test for tutorial
[ci skip]
-rw-r--r--guides/source/plugins.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/plugins.md b/guides/source/plugins.md
index 695f25f8a9..f5b4b0167c 100644
--- a/guides/source/plugins.md
+++ b/guides/source/plugins.md
@@ -68,7 +68,7 @@ In this example you will add a method to String named `to_squawk`. To begin, cre
require 'test_helper'
-class CoreExtTest < Test::Unit::TestCase
+class CoreExtTest < ActiveSupport::TestCase
def test_to_squawk_prepends_the_word_squawk
assert_equal "squawk! Hello World", "Hello World".to_squawk
end