diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-06-16 18:30:30 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-06-16 18:30:30 +0000 |
commit | c88ecf0e938f6badd7cd96d8041a707e02d13f55 (patch) | |
tree | 679bf45b6bead486ebcd02a20f5a86be6eacaf31 /test/unit | |
parent | 0a8e4b162878ca5210e18cfedd5bb0e8486f83dd (diff) | |
download | redmine-c88ecf0e938f6badd7cd96d8041a707e02d13f55.tar.gz redmine-c88ecf0e938f6badd7cd96d8041a707e02d13f55.zip |
Markdown formatter not running on rake test.
git-svn-id: http://svn.redmine.org/redmine/trunk@14317 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb (renamed from test/unit/lib/redmine/wiki_formatting/markdown_formatter.rb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/markdown_formatter.rb b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb index 0a0426311..9b5c60072 100644 --- a/test/unit/lib/redmine/wiki_formatting/markdown_formatter.rb +++ b/test/unit/lib/redmine/wiki_formatting/markdown_formatter_test.rb @@ -68,7 +68,7 @@ STR def test_external_links_should_have_external_css_class text = 'This is a [link](http://example.net/)' - assert_equal '<p>This is a <a class="external" href="http://example.net/">link</a></p>', @formatter.new(text).to_html.strip + assert_equal '<p>This is a <a href="http://example.net/" class="external">link</a></p>', @formatter.new(text).to_html.strip end def test_locals_links_should_not_have_external_css_class |