class CucumberJunitToJson::Models::Match

Abstract representation of a cucumber step definition match attribute

Attributes

arguments[RW]
location[RW]

Public Class Methods

new(location = '', arguments = []) click to toggle source
# File lib/cucumber_junit_to_json/models/match.rb, line 10
def initialize(location = '', arguments = [])
  @location = location
  @arguments = arguments
end