class Cucumber::Messages::Tag

Represents the Tag message in Cucumber's message protocol.

*

A tag

Attributes

id[R]

Unique ID to be able to reference the Tag from PickleTag

location[R]

Location of the tag

name[R]

The name of the tag (including the leading `@`)

Public Class Methods

from_h(hash) click to toggle source

Returns a new Tag from the given hash. If the hash keys are camelCased, they are properly assigned to the corresponding snake_cased attributes.

Cucumber::Messages::Tag.from_h(some_hash) # => #<Cucumber::Messages::Tag:0x... ...>
# File lib/cucumber/messages.deserializers.rb, line 416
def self.from_h(hash)
  return nil if hash.nil?

  self.new(
    location: Location.from_h(hash[:location]),
    name: hash[:name],
    id: hash[:id],
  )
end
new( location: Location.new, name: '', id: '' ) click to toggle source
# File lib/cucumber/messages.dtos.rb, line 775
def initialize(
  location: Location.new,
  name: '',
  id: ''
)
  @location = location
  @name = name
  @id = id
end