Class: RSpec::Trunk
- Inherits:
-
Object
- Object
- RSpec::Trunk
- Defined in:
- lib/trunk_spec_helper.rb
Overview
Trunk is a class that is used to monitor the execution of the Example class
Class Method Summary collapse
Instance Method Summary collapse
- #current_example ⇒ Object
-
#initialize(example) ⇒ Trunk
constructor
A new instance of Trunk.
- #run ⇒ Object
Constructor Details
#initialize(example) ⇒ Trunk
Returns a new instance of Trunk.
185 186 187 |
# File 'lib/trunk_spec_helper.rb', line 185 def initialize(example) @example = example end |
Class Method Details
.setup ⇒ Object
175 176 177 178 179 180 181 182 183 |
# File 'lib/trunk_spec_helper.rb', line 175 def self.setup RSpec.configure do |config| if trunk_disabled config.around(:each, &:run) else config.around(:each, &:run_with_trunk) end end end |
Instance Method Details
#current_example ⇒ Object
189 190 191 |
# File 'lib/trunk_spec_helper.rb', line 189 def current_example @current_example ||= RSpec.current_example end |
#run ⇒ Object
193 194 195 196 197 198 199 200 201 202 |
# File 'lib/trunk_spec_helper.rb', line 193 def run # run the test @example.run # monitor attempts in the metadata if @example.[:attempt_number] @example.[:attempt_number] += 1 else @example.[:attempt_number] = 0 end end |