diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb
index 4134141..9db9434 100644
--- a/test/unit/helpers/application_helper_test.rb
+++ b/test/unit/helpers/application_helper_test.rb
@@ -95,7 +95,9 @@ class ApplicationHelperTest < HelperTestCase
'Inline image: !logo.gif!' => 'Inline image: ',
'Inline image: !logo.GIF!' => 'Inline image:
',
'No match: !ogo.gif!' => 'No match:
',
- 'No match: !ogo.GIF!' => 'No match:
'
+ 'No match: !ogo.GIF!' => 'No match:
',
+ # link image
+ '!logo.gif!:http://foo.bar/' => '
',
}
attachments = Attachment.find(:all)
to_test.each { |text, result| assert_equal "
#{result}
", textilizable(text, :attachments => attachments) }