Class: Spinach::Feature

Inherits:
Object
  • Object
show all
Defined in:
lib/spinach/feature.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFeature

Returns a new instance of Feature.



9
10
11
12
13
# File 'lib/spinach/feature.rb', line 9

def initialize
  @scenarios    = []
  @tags         = []
  @lines_to_run = []
end

Instance Attribute Details

#backgroundObject

Returns the value of attribute background.



5
6
7
# File 'lib/spinach/feature.rb', line 5

def background
  @background
end

#descriptionObject

Returns the value of attribute description.



6
7
8
# File 'lib/spinach/feature.rb', line 6

def description
  @description
end

#filenameObject Also known as: ordering_id

Returns the value of attribute filename.



3
4
5
# File 'lib/spinach/feature.rb', line 3

def filename
  @filename
end

#lines_to_runObject

Returns the value of attribute lines_to_run.



7
8
9
# File 'lib/spinach/feature.rb', line 7

def lines_to_run
  @lines_to_run
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/spinach/feature.rb', line 4

def name
  @name
end

#scenariosObject

Returns the value of attribute scenarios.



4
5
6
# File 'lib/spinach/feature.rb', line 4

def scenarios
  @scenarios
end

#tagsObject

Returns the value of attribute tags.



4
5
6
# File 'lib/spinach/feature.rb', line 4

def tags
  @tags
end

Instance Method Details

#background_stepsObject



15
16
17
# File 'lib/spinach/feature.rb', line 15

def background_steps
  @background.nil? ? [] : @background.steps
end

#each_stepObject

Run the provided code for every step



36
37
38
# File 'lib/spinach/feature.rb', line 36

def each_step
  scenarios.each { |scenario| scenario.steps.each { |step| yield step } }
end

#run_every_scenario?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/spinach/feature.rb', line 23

def run_every_scenario?
  lines_to_run.empty?
end