Sha256: a423cdfae9041bb8c8debd9ad44d0aed21b6d92585bc8bfd8bece303c4a31d00
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
# -*- encoding: utf-8 -*- require 'test/unit' require 'helper' require 'webgen/tree' require 'webgen/contentprocessor' class TestContentProcessorBuilder < Test::Unit::TestCase include Test::WebgenAssertions def test_call obj = Webgen::ContentProcessor::Builder.new root = Webgen::Node.new(Webgen::Tree.new.dummy_root, '/', '/') node = Webgen::Node.new(root, 'test', 'test') content = "xml.div(:path => context.node.alcn) { xml.strong('test'); " + "context.website; context; context.ref_node; context.dest_node }" context = Webgen::Context.new(:content => content, :chain => [node]) assert_equal("<div path=\"/test\">\n <strong>test</strong>\n</div>\n", obj.call(context).content) context.content = 'raise "bla"' context.content = "xml.div do \n5+5\n+=+6\nend" assert_error_on_line(Webgen::RenderError, 3) { obj.call(context) } context.content = "xml.div do \n5+5\nunknown\n++6\nend" assert_error_on_line(Webgen::RenderError, 3) { obj.call(context) } def obj.require(lib); raise LoadError; end assert_raise(Webgen::LoadError) { obj.call(context) } end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
webgen-0.5.11 | test/test_contentprocessor_builder.rb |
webgen-0.5.10 | test/test_contentprocessor_builder.rb |
webgen-0.5.9 | test/test_contentprocessor_builder.rb |