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

Attributes included from Names

#name

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, #title, #to_s

Constructor Details

#initialize(gherkin_statement, language, location, comments, keyword, name, 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, name, description, raw_steps)
  @gherkin_statement = gherkin_statement
  @language = language
  @location = location
  @comments = comments
  @keyword = keyword
  @name = name
  @description = description
  @raw_steps = raw_steps
end

Instance Attribute Details

#commentsObject (readonly)

Returns the value of attribute comments.



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

def comments
  @comments
end

#descriptionObject (readonly)

Returns the value of attribute description.



24
25
26
# File 'lib/cucumber/core/ast/background.rb', line 24

def description
  @description
end

#gherkin_statementObject (readonly)

Returns the value of attribute gherkin_statement.



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

def gherkin_statement
  @gherkin_statement
end

#keywordObject (readonly)

Returns the value of attribute keyword.



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

def keyword
  @keyword
end

#locationObject (readonly)

Returns the value of attribute location.



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

def location
  @location
end

Instance Method Details

#childrenObject



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

def children
  raw_steps
end