class Fabrication::MisplacedFabricateError

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/fabrication/errors/misplaced_fabricate_error.rb, line 3
def initialize(name)
  super("You tried to fabricate `#{name}` while Fabricators were still loading. " \
        "Check your fabricator files and make sure you didn't accidentally type " \
        '`Fabricate` instead of `Fabricator` in there somewhere.')
end