diff options
author | Reverite <github@reverite.sh> | 2019-06-22 14:15:02 -0600 |
---|---|---|
committer | Reverite <github@reverite.sh> | 2019-06-22 14:15:02 -0600 |
commit | 714940de498e93a8bf40dcda1835217df18741bf (patch) | |
tree | eafc1d01710ba978f133216d8d1a6e4d585606c6 /spec | |
parent | b2ffaa9f2909c83f23691a02b2843bf41a1a12c0 (diff) | |
parent | 38d28824475056766c97385b66f4e04a5123e3a2 (diff) |
Merge branch 'glitch' into production
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/sanitize_config_spec.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/lib/sanitize_config_spec.rb b/spec/lib/sanitize_config_spec.rb new file mode 100644 index 000000000..c5143bcef --- /dev/null +++ b/spec/lib/sanitize_config_spec.rb @@ -0,0 +1,18 @@ +# 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 } + + it 'keeps h1' do + expect(Sanitize.fragment('<h1>Foo</h1>', subject)).to eq '<h1>Foo</h1>' + end + + 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>' + end + end +end |