class Cucumber::Core::Test::Tag

Attributes

name[R]

Public Class Methods

new(location, name) click to toggle source
# File lib/cucumber/core/test/tag.rb, line 9
def initialize(location, name)
  @location = location
  @name = name
end

Public Instance Methods

inspect() click to toggle source
# File lib/cucumber/core/test/tag.rb, line 14
def inspect
  %{#<#{self.class} "#{name}" (#{location})>}
end