diff options
Diffstat (limited to 'test/helpers/application_helper_test.rb')
-rw-r--r-- | test/helpers/application_helper_test.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 1ae34a9f2..90422ca95 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -28,7 +28,7 @@ class ApplicationHelperTest < Redmine::HelperTest :members, :member_roles, :roles, :repositories, :changesets, :projects_trackers, - :trackers, :issue_statuses, :issues, :versions, :documents, + :trackers, :issue_statuses, :issues, :versions, :documents, :journals, :wikis, :wiki_pages, :wiki_contents, :boards, :messages, :news, :attachments, :enumerations, @@ -423,6 +423,14 @@ RAW to_test.each { |text, result| assert_equal "<p>#{result}</p>", textilizable(text), "#{text} failed" } end + def test_link_to_note_within_the_same_page + issue = Issue.find(1) + assert_equal '<p><a href="#note-14">#note-14</a></p>', textilizable('#note-14', :object => issue) + + journal = Journal.find(2) + assert_equal '<p><a href="#note-2">#note-2</a></p>', textilizable('#note-2', :object => journal) + end + def test_user_links_with_email_as_login_name_should_not_be_parsed_textile with_settings :text_formatting => 'textile' do u = User.generate!(:login => 'jsmith@somenet.foo') |