2013-12-28 23:45:13 +01:00
|
|
|
require 'test_helper'
|
|
|
|
|
2017-06-10 14:28:10 +02:00
|
|
|
# Test some event helper methods
|
2013-12-28 23:45:13 +01:00
|
|
|
class EventsHelperTest < ActionView::TestCase
|
2017-06-10 14:28:10 +02:00
|
|
|
test 'Markdown with empty content' do
|
|
|
|
assert_equal '', to_markdown('')
|
|
|
|
assert_equal '', to_markdown(' ')
|
|
|
|
assert_equal "'", to_markdown("\'")
|
|
|
|
assert_equal '', to_markdown('
|
|
|
|
')
|
|
|
|
end
|
2019-03-03 16:42:33 +01:00
|
|
|
|
|
|
|
test 'HTML elements with a space inside' do
|
|
|
|
assert_equal '**hello world**', to_markdown('<strong>hello world </strong>')
|
|
|
|
assert_equal '**h**,', to_markdown('<strong> h</strong>,')
|
|
|
|
assert_equal '**h**,', to_markdown('<strong>h </strong>,')
|
|
|
|
assert_equal '*ho***h**,', to_markdown('<em>ho</em><strong>h </strong>,')
|
|
|
|
assert_equal '*ho* **h**,', to_markdown('<em>ho</em><strong> h</strong>,')
|
|
|
|
end
|
2013-12-28 23:45:13 +01:00
|
|
|
end
|