Class: Cucumber::Core::Ast::Background

Inherits:
Object
  • Object
show all
Includes:
DescribesItself, HasLocation, Names
Defined in:
lib/cucumber/core/ast/background.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from DescribesItself

#describe_to

Methods included from HasLocation

#attributes, #file, #file_colon_line, #line, #match_locations?, #multiline_arg, #tags

Methods included from Names

#inspect, #legacy_conflated_name_and_description, #name, #to_s

Constructor Details

#initialize(gherkin_statement, language, location, comments, keyword, title, description, raw_steps) ⇒ Background

Returns a new instance of Background.



13
14
15
16
17
18
19
20
21
22
# File 'lib/cucumber/core/ast/background.rb', line 13

def initialize(gherkin_statement, language, location, comments, keyword, title, description, raw_steps)
  @gherkin_statement = gherkin_statement
  @language = language
  @location = location
  @comments = comments
  @keyword = keyword
  @title = title
  @description = description
  @raw_steps = raw_steps
end

Instance Attribute Details

#commentsObject

Returns the value of attribute comments.



28
29
30
# File 'lib/cucumber/core/ast/background.rb', line 28

def comments
  @comments
end

#featureObject

Returns the value of attribute feature.



27
28
29
# File 'lib/cucumber/core/ast/background.rb', line 27

def feature
  @feature
end

#gherkin_statementObject (readonly)

Returns the value of attribute gherkin_statement.



29
30
31
# File 'lib/cucumber/core/ast/background.rb', line 29

def gherkin_statement
  @gherkin_statement
end

#keywordObject

Returns the value of attribute keyword.



28
29
30
# File 'lib/cucumber/core/ast/background.rb', line 28

def keyword
  @keyword
end

#locationObject

Returns the value of attribute location.



28
29
30
# File 'lib/cucumber/core/ast/background.rb', line 28

def location
  @location
end

Instance Method Details

#childrenObject



31
32
33
# File 'lib/cucumber/core/ast/background.rb', line 31

def children
  raw_steps
end