Class: Cucumber::Ast::Background
Instance Attribute Summary collapse
Instance Method Summary
collapse
#attach_steps, #backtrace_line, #file_colon_line, #matches_scenario_names?, #max_line_length, #previous_step, #source_indent
Constructor Details
#initialize(comment, line, keyword, name, steps) ⇒ Background
Returns a new instance of Background.
9
10
11
12
13
|
# 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)
end
|
Instance Attribute Details
#feature=(value) ⇒ Object
Sets the attribute feature
7
8
9
|
# File 'lib/cucumber/ast/background.rb', line 7
def feature=(value)
@feature = value
end
|
Instance Method Details
#accept(visitor) ⇒ Object
24
25
26
27
28
29
30
31
|
# File 'lib/cucumber/ast/background.rb', line 24
def accept(visitor)
visitor.(@comment)
visitor.visit_background_name(@keyword, @name, file_colon_line(@line), source_indent(text_length))
visitor.step_mother.before_and_after(self)
visitor.visit_steps(@step_invocations)
@failed = @step_invocations.detect{|step_invocation| step_invocation.exception}
visitor.step_mother.after(self) if @failed
end
|
#failed? ⇒ Boolean
33
34
35
|
# File 'lib/cucumber/ast/background.rb', line 33
def failed?
@failed
end
|
#step_collection(step_invocations) ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'lib/cucumber/ast/background.rb', line 15
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
|
#text_length ⇒ Object
37
38
39
|
# File 'lib/cucumber/ast/background.rb', line 37
def text_length
@keyword.jlength
end
|
41
42
43
44
45
46
47
48
|
# File 'lib/cucumber/ast/background.rb', line 41
def to_sexp
sexp = [:background, @line, @keyword]
= @comment.to_sexp
sexp += [] if
steps = @steps.to_sexp
sexp += steps if steps.any?
sexp
end
|