summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-20 14:49:32 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-10-20 14:49:32 +0000
commitd29fa4735b5744f3288e9c33a9e81a5f36abcca1 (patch)
treea94c328505f4c4a8cba94bc16bf0f70b6a790f78 /test/unit
parent0faab70be58c2b52963b9eb02cc941e32b3c44c7 (diff)
downloadredmine-d29fa4735b5744f3288e9c33a9e81a5f36abcca1.tar.gz
redmine-d29fa4735b5744f3288e9c33a9e81a5f36abcca1.zip
Adds a macro for inserting collapsed text (#12167).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10680 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/lib/redmine/wiki_formatting/macros_test.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/unit/lib/redmine/wiki_formatting/macros_test.rb b/test/unit/lib/redmine/wiki_formatting/macros_test.rb
index 53665d017..08b0af462 100644
--- a/test/unit/lib/redmine/wiki_formatting/macros_test.rb
+++ b/test/unit/lib/redmine/wiki_formatting/macros_test.rb
@@ -180,6 +180,36 @@ class Redmine::WikiFormatting::MacrosTest < ActionView::TestCase
assert_include 'Page not found', textilizable(text)
end
+ def test_macro_collapse
+ text = "{{collapse\n*Collapsed* block of text\n}}"
+ result = textilizable(text)
+
+ assert_select_in result, 'div.collapsed-text'
+ assert_select_in result, 'strong', :text => 'Collapsed'
+ assert_select_in result, 'a.collapsible.collapsed', :text => 'Show'
+ assert_select_in result, 'a.collapsible', :text => 'Hide'
+ end
+
+ def test_macro_collapse_with_one_arg
+ text = "{{collapse(Example)\n*Collapsed* block of text\n}}"
+ result = textilizable(text)
+
+ assert_select_in result, 'div.collapsed-text'
+ assert_select_in result, 'strong', :text => 'Collapsed'
+ assert_select_in result, 'a.collapsible.collapsed', :text => 'Example'
+ assert_select_in result, 'a.collapsible', :text => 'Example'
+ end
+
+ def test_macro_collapse_with_two_args
+ text = "{{collapse(Show example, Hide example)\n*Collapsed* block of text\n}}"
+ result = textilizable(text)
+
+ assert_select_in result, 'div.collapsed-text'
+ assert_select_in result, 'strong', :text => 'Collapsed'
+ assert_select_in result, 'a.collapsible.collapsed', :text => 'Show example'
+ assert_select_in result, 'a.collapsible', :text => 'Hide example'
+ end
+
def test_macro_child_pages
expected = "<p><ul class=\"pages-hierarchy\">\n" +
"<li><a href=\"/projects/ecookbook/wiki/Child_1\">Child 1</a>\n" +