Sha256: a58d5b6ff9aaf6471bd9f6028a807ca20f239193e605bb16eb91ad84cbdfac73
Contents?: true
Size: 807 Bytes
Versions: 2
Compression:
Stored size: 807 Bytes
Contents
module CucumberAnalytics # A mix-in module containing methods used by elements that can be tagged. module Taggable # The tags which are directly assigned to the element attr_accessor :tags # Returns the tags which are indirectly assigned to the element (i.e. they # have been inherited from a parent element). def applied_tags @parent_element.respond_to?(:all_tags) ? @parent_element.all_tags : [] end # Returns all of the tags which are applicable to the element. def all_tags applied_tags + @tags end private def populate_element_tags(parsed_element) if parsed_element['tags'] parsed_element['tags'].each do |tag| @tags << tag['name'] end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumber_analytics-1.1.1 | lib/cucumber_analytics/taggable.rb |
cucumber_analytics-1.0.0 | lib/cucumber_analytics/taggable.rb |