class YARD::CodeObjects::Cucumber::Scenario
Attributes
comments[RW]
description[RW]
feature[RW]
keyword[RW]
steps[RW]
value[RW]
Public Class Methods
new(namespace, name)
click to toggle source
Calls superclass method
# File lib/yard/code_objects/cucumber/scenario.rb, line 7 def initialize(namespace, name) super(namespace, name.to_s.strip) @comments = @description = @keyword = @value = @feature = nil @steps = [] @tags = [] end
Public Instance Methods
background?()
click to toggle source
# File lib/yard/code_objects/cucumber/scenario.rb, line 14 def background? @keyword == "Background" end
outline?()
click to toggle source
# File lib/yard/code_objects/cucumber/scenario.rb, line 18 def outline? false end