Object
The formatter used for --format tag_cloud Custom formatter that prints a tag cloud as a table.
# File lib/cucumber/formatter/tag_cloud.rb, line 11 def initialize(step_mother, path_or_io, options) @io = ensure_io(path_or_io, "tag_cloud") @options = options @counts = Hash.new{|h,k| h[k] = 0} end
# File lib/cucumber/formatter/tag_cloud.rb, line 17 def after_features(features) print_summary(features) end
# File lib/cucumber/formatter/tag_cloud.rb, line 21 def tag_name(tag_name) @counts[tag_name] += 1 end
[Validate]
Generated with the Darkfish Rdoc Generator 2.