diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-04 10:04:46 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-04 10:04:46 +0000 |
commit | 739820141a4b625cf5daeab45caf58a9f2600644 (patch) | |
tree | 2394bd1d9a61b70a7363d7466c9367ed8f987f27 /test/unit/helpers | |
parent | b4f22b93e9f82bc925bfb2fd34a1630f70ff77ac (diff) | |
download | redmine-739820141a4b625cf5daeab45caf58a9f2600644.tar.gz redmine-739820141a4b625cf5daeab45caf58a9f2600644.zip |
Extracted auto_link and auto_mailto to a module.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9063 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/helpers')
-rw-r--r-- | test/unit/helpers/application_helper_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 2fcb0309c..a9dd4b3b4 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -940,7 +940,7 @@ RAW def test_default_formatter with_settings :text_formatting => 'unknown' do text = 'a *link*: http://www.example.net/' - assert_equal '<p>a *link*: <a href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text) + assert_equal '<p>a *link*: <a class="external" href="http://www.example.net/">http://www.example.net/</a></p>', textilizable(text) end end |