Sha256: 23426f5684c9411a8933f1b478e6a89058e448e2f651a090a7afa71528dfbf0f
Contents?: true
Size: 1.19 KB
Versions: 4
Compression:
Stored size: 1.19 KB
Contents
#!/usr/bin/env ruby require File.join(File.dirname(__FILE__), 'helper') class TestRestrictions < Test::Unit::TestCase # security restrictions generate_formatter_tests('filtered_html') do |doc| RedCloth.new(doc['in'], [:filter_html]).to_html end generate_formatter_tests('sanitized_html') do |doc| RedCloth.new(doc['in'], [:sanitize_html]).to_html end # pba filters (style, class, id) generate_formatter_tests('style_filtered_html') do |doc| RedCloth.new(doc['in'], [:filter_styles]).to_html end generate_formatter_tests('class_filtered_html') do |doc| RedCloth.new(doc['in'], [:filter_classes]).to_html end generate_formatter_tests('id_filtered_html') do |doc| RedCloth.new(doc['in'], [:filter_ids]).to_html end # hard breaks - has been deprecated and will be removed in a future version generate_formatter_tests('html_no_breaks') do |doc| red = RedCloth.new(doc['in']) red.hard_breaks = false red.to_html end generate_formatter_tests('lite_mode_html') do |doc| RedCloth.new(doc['in'], [:lite_mode]).to_html end generate_formatter_tests('no_span_caps_html') do |doc| RedCloth.new(doc['in'], [:no_span_caps]).to_html end end
Version data entries
4 entries across 4 versions & 2 rubygems