class VCR::CucumberTags

Provides integration with Cucumber using tags.

Public Class Methods

new(main_object) click to toggle source

@private

# File lib/vcr/test_frameworks/cucumber.rb, line 19
def initialize(main_object)
  @main_object = main_object
end

Public Instance Methods

add_tag(tag) click to toggle source

@private

# File lib/vcr/test_frameworks/cucumber.rb, line 11
def add_tag(tag)
  @tags << tag
end
tag()
Alias for: tags
tags() click to toggle source

@private

# File lib/vcr/test_frameworks/cucumber.rb, line 6
def tags
  @tags.dup
end
Also aliased as: tag