Sha256: a27ee30bb6593e51d2fba93ade8a96173759a5279990b9f035ca8333e02315c6

Contents?: true

Size: 801 Bytes

Versions: 6

Compression:

Stored size: 801 Bytes

Contents

# encoding: utf-8

class Nanoc::Filters::RDiscountTest < Nanoc::TestCase
  def test_filter
    if_have 'rdiscount' do
      # Create filter
      filter = ::Nanoc::Filters::RDiscount.new

      # Run filter
      result = filter.setup_and_run('> Quote')
      assert_match(/<blockquote>\s*<p>Quote<\/p>\s*<\/blockquote>/, result)
    end
  end

  def test_with_extensions
    if_have 'rdiscount' do
      # Create filter
      filter = ::Nanoc::Filters::RDiscount.new

      # Run filter
      input           = "The quotation 'marks' sure make this look sarcastic!"
      output_expected = /The quotation &lsquo;marks&rsquo; sure make this look sarcastic!/
      output_actual   = filter.setup_and_run(input, extensions: [:smart])
      assert_match(output_expected, output_actual)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nanoc-4.0.0b2 test/filters/test_rdiscount.rb
nanoc-4.0.0b1 test/filters/test_rdiscount.rb
nanoc-4.0.0a2 test/filters/test_rdiscount.rb
nanoc-4.0.0a1 test/filters/test_rdiscount.rb
nanoc-3.8.0 test/filters/test_rdiscount.rb
nanoc-3.7.5 test/filters/test_rdiscount.rb