Sha256: cbc08b2d2130e611336c3ae197abcb3007390d3f30d0a98ffc7e6f2bf9185ca1

Contents?: true

Size: 1.3 KB

Versions: 36

Compression:

Stored size: 1.3 KB

Contents

require 'contest'
require 'tilt'

begin
  require 'redcloth'

  class RedClothTemplateTest < Test::Unit::TestCase
    test "is registered for '.textile' files" do
      assert_equal Tilt::RedClothTemplate, Tilt['test.textile']
    end

    test "compiles and evaluates the template on #render" do
      template = Tilt::RedClothTemplate.new { |t| "h1. Hello World!" }
      assert_equal "<h1>Hello World!</h1>", template.render
    end

    test "can be rendered more than once" do
      template = Tilt::RedClothTemplate.new { |t| "h1. Hello World!" }
      3.times { assert_equal "<h1>Hello World!</h1>", template.render }
    end

    test "ignores unknown options" do
      template = Tilt::RedClothTemplate.new(:foo => "bar") { |t| "h1. Hello World!" }
      3.times { assert_equal "<h1>Hello World!</h1>", template.render }
    end

    test "passes in RedCloth options" do
      template = Tilt::RedClothTemplate.new { |t| "Hard breaks are\ninserted by default." }
      assert_equal "<p>Hard breaks are<br />\ninserted by default.</p>", template.render
      template = Tilt::RedClothTemplate.new(:hard_breaks => false) { |t| "But they can be\nturned off." }
      assert_equal "<p>But they can be\nturned off.</p>", template.render
    end
  end
rescue LoadError => boom
  warn "Tilt::RedClothTemplate (disabled)"
end

Version data entries

36 entries across 29 versions & 10 rubygems

Version Path
tilt-1.4.0 test/tilt_redclothtemplate_test.rb
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/tilt-1.3.6/test/tilt_redclothtemplate_test.rb
challah-1.0.0.beta2 vendor/bundle/gems/tilt-1.3.7/test/tilt_redclothtemplate_test.rb
challah-1.0.0.beta vendor/bundle/gems/tilt-1.3.6/test/tilt_redclothtemplate_test.rb
tilt-1.3.7 test/tilt_redclothtemplate_test.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/tilt-1.3.6/test/tilt_redclothtemplate_test.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/tilt-1.3.6/test/tilt_redclothtemplate_test.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/tilt-1.3.6/test/tilt_redclothtemplate_test.rb
torquebox-console-0.2.5 vendor/bundle/ruby/1.8/gems/tilt-1.3.4/test/tilt_redclothtemplate_test.rb
torquebox-console-0.2.5 vendor/bundle/jruby/1.9/gems/tilt-1.3.4/test/tilt_redclothtemplate_test.rb
tilt-1.3.6 test/tilt_redclothtemplate_test.rb
torquebox-console-0.2.4 vendor/bundle/jruby/1.9/gems/tilt-1.3.4/test/tilt_redclothtemplate_test.rb
torquebox-console-0.2.4 vendor/bundle/ruby/1.8/gems/tilt-1.3.4/test/tilt_redclothtemplate_test.rb
tilt-1.3.5 test/tilt_redclothtemplate_test.rb
torquebox-console-0.2.3 vendor/bundle/jruby/1.9/gems/tilt-1.3.4/test/tilt_redclothtemplate_test.rb
tilt-1.3.4 test/tilt_redclothtemplate_test.rb