mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Add tests of HTML sanitization
This commit is contained in:
parent
097470bb0c
commit
c54a8a1238
1 changed files with 8 additions and 0 deletions
|
|
@ -16,5 +16,13 @@ describe FormatHelper, type: :helper do
|
|||
it 'should return HTML for header markdown' do
|
||||
expect(markdown('# this is my header')).to eq "<h1>this is my header</h1>\n"
|
||||
end
|
||||
|
||||
it 'escapes input HTML' do
|
||||
expect(markdown('<em>*a*</em>')).to eq "<p><em><em>a</em></em></p>\n"
|
||||
end
|
||||
|
||||
it 'removes unallowed elements' do
|
||||
expect(markdown('<em>*<style>a</style>*</em>', false)).to eq "<p><em><em>a</em></em></p>\n"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue