Sha256: 141893a969e4da0b94d3a26ec23fad28b0105893935585482afcf5a07159c3f4
Contents?: true
Size: 648 Bytes
Versions: 1
Compression:
Stored size: 648 Bytes
Contents
# -*- coding: utf-8 -*- require File.join(File.dirname(__FILE__), "..", "..", "spec_helper") require 'treevisitor/visitors/block_tree_node_visitor' describe "Tree Node Visitors" do before do ta = TreeNode.new( "a", nil ) LeafNode.new("1", ta ) LeafNode.new("2", ta ) tb = TreeNode.new( "b", ta ) LeafNode.new( "3", tb ) @tree = ta end it BlockTreeNodeVisitor do accumulator = [] visitor = BlockTreeNodeVisitor.new { |node| accumulator << node.content} @tree.accept( visitor ) accumulator.length.should == 5 accumulator.should == %w{ a 1 2 b 3 } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
treevisitor-0.1.6 | spec/treevisitor/visitors/block_tree_node_visitor_spec.rb |