Parent

Included Modules

Class Index [+]

Quicksearch

Cucumber::Formatter::TagCloud

The formatter used for --format tag_cloud Custom formatter that prints a tag cloud as a table.

Public Class Methods

new(step_mother, path_or_io, options) click to toggle source
    # File lib/cucumber/formatter/tag_cloud.rb, line 11
11:       def initialize(step_mother, path_or_io, options)
12:         @io = ensure_io(path_or_io, "tag_cloud")
13:         @options = options
14:         @counts = Hash.new{|h,k| h[k] = 0}
15:       end

Public Instance Methods

after_features(features) click to toggle source
    # File lib/cucumber/formatter/tag_cloud.rb, line 17
17:       def after_features(features)
18:         print_summary(features)
19:       end
tag_name(tag_name) click to toggle source
    # File lib/cucumber/formatter/tag_cloud.rb, line 21
21:       def tag_name(tag_name)
22:         @counts[tag_name] += 1
23:       end

Private Instance Methods

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.