class Teaspoon::CoverageResultsNotFoundError

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method
# File lib/teaspoon/exceptions.rb, line 156
def initialize(msg = nil)
  msg ||= "You requested coverage reports, but no results were found. Are all files being ignored in your coverage config? If you have expand_assets set to false, you will need to remove spec_helper from the ignore list."
  super(msg)
end