1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fixes plugin test for tutorial

[ci skip]
This commit is contained in:
Matt Newton 2013-07-17 11:53:08 -04:00
parent 1a58ac60d9
commit dec8a8ddcc

View file

@ -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