class CucumberJunitToJson::Models::Tag

Abstract representation of a cucumber tag attribute

Attributes

line[RW]
name[RW]

Public Class Methods

new(name, line) click to toggle source
# File lib/cucumber_junit_to_json/models/tag.rb, line 10
def initialize(name, line)
  @name = name
  @line = line
end