You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
530 B
19 lines
530 B
5 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
require Rails.root.join('app', 'lib', 'sanitize_config.rb')
|
||
|
|
||
|
describe Sanitize::Config do
|
||
|
describe '::MASTODON_STRICT' do
|
||
|
subject { Sanitize::Config::MASTODON_STRICT }
|
||
|
|
||
5 years ago
|
it 'keeps h1' do
|
||
|
expect(Sanitize.fragment('<h1>Foo</h1>', subject)).to eq '<h1>Foo</h1>'
|
||
5 years ago
|
end
|
||
|
|
||
5 years ago
|
it 'keeps ul' do
|
||
|
expect(Sanitize.fragment('<p>Check out:</p><ul><li>Foo</li><li>Bar</li></ul>', subject)).to eq '<p>Check out:</p><ul><li>Foo</li><li>Bar</li></ul>'
|
||
5 years ago
|
end
|
||
|
end
|
||
|
end
|