Class: Cucumber::Ast::Background
Instance Attribute Summary collapse
#feature
Instance Method Summary
collapse
#attach_steps, #backtrace_line, #file_colon_line, #first_line_length, #language, #matches_scenario_names?, #max_line_length, #name_line_lengths, #source_indent, #tag_count, #text_length
Constructor Details
#initialize(comment, line, keyword, name, steps) ⇒ Background
Returns a new instance of Background.
9
10
11
12
13
14
|
# File 'lib/cucumber/ast/background.rb', line 9
def initialize(, line, keyword, name, steps)
@comment, @line, @keyword, @name, @steps = , line, keyword, name, StepCollection.new(steps)
attach_steps(steps)
@step_invocations = @steps.step_invocations(true)
@feature_elements = []
end
|
Instance Attribute Details
#feature_elements ⇒ Object
Returns the value of attribute feature_elements.
7
8
9
|
# File 'lib/cucumber/ast/background.rb', line 7
def feature_elements
@feature_elements
end
|
Instance Method Details
#accept(visitor) ⇒ Object
25
26
27
28
29
30
31
32
33
|
# File 'lib/cucumber/ast/background.rb', line 25
def accept(visitor)
return if $cucumber_interrupted
visitor.(@comment) unless @comment.empty?
visitor.visit_background_name(@keyword, @name, file_colon_line(@line), source_indent(first_line_length))
visitor.step_mother.before(hook_context)
visitor.visit_steps(@step_invocations)
@failed = @step_invocations.detect{|step_invocation| step_invocation.exception}
visitor.step_mother.after(hook_context) if @failed || @feature_elements.empty?
end
|
#accept_hook?(hook) ⇒ Boolean
35
36
37
38
39
40
41
42
|
# File 'lib/cucumber/ast/background.rb', line 35
def accept_hook?(hook)
if hook_context != self
hook_context.accept_hook?(hook)
else
@feature.accept_hook?(hook)
end
end
|
#failed? ⇒ Boolean
44
45
46
|
# File 'lib/cucumber/ast/background.rb', line 44
def failed?
@failed
end
|
#hook_context ⇒ Object
48
49
50
|
# File 'lib/cucumber/ast/background.rb', line 48
def hook_context
@feature_elements.first || self
end
|
#step_collection(step_invocations) ⇒ Object
16
17
18
19
20
21
22
23
|
# File 'lib/cucumber/ast/background.rb', line 16
def step_collection(step_invocations)
unless(@first_collection_created)
@first_collection_created = true
@step_invocations.dup(step_invocations)
else
@steps.step_invocations(true).dup(step_invocations)
end
end
|
52
53
54
55
56
57
58
59
60
|
# File 'lib/cucumber/ast/background.rb', line 52
def to_sexp
sexp = [:background, @line, @keyword]
sexp += [@name] unless @name.empty?
= @comment.to_sexp
sexp += [] if
steps = @steps.to_sexp
sexp += steps if steps.any?
sexp
end
|