Sha256: 1325afed2fb5a875cb45d7d53e2de22197521d47d2ebd361785b53936d0ac551
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 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 generate_formatter_tests('disable_inline_images') do |doc| RedCloth.new(doc['in'], [:disable_inline=>:image]).to_html end generate_formatter_tests('general_disable_inline') do |doc| RedCloth.new(doc['in'], [:disable_inline=>[:strong,:del]]).to_html end generate_formatter_tests('bbcode') do |doc| RedCloth.new(doc['in'], [:bbcode,:filter_html]).to_html end generate_formatter_tests('bbcode_only') do |doc| RedCloth.new(doc['in'], [:bbcode_only]).to_html end generate_formatter_tests('filter_swears') do |doc| RedCloth.new(doc['in'], [:filter_swears,:bbcode]).to_html end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
BBRedCloth-0.8.0 | test/test_restrictions.rb |