class Object

Public Instance Methods

assertions() click to toggle source

All three of these methods will pass their body on to method_missing in the starting_blocks gem The body needs to be singular because rspec outputs a single example or a single failure in singular text Ie example and failure But, the regex will still find both example/examples and failure/failures.

# File lib/text_parser_override.rb, line 7
def assertions
  example
end
failures() click to toggle source
# File lib/text_parser_override.rb, line 15
def failures
  failure
end
tests() click to toggle source
# File lib/text_parser_override.rb, line 11
def tests
  example
end