Exception: TestProf::BeforeAll::AdapterMissing

Inherits:
StandardError
  • Object
show all
Defined in:
lib/test_prof/before_all.rb

Overview

:nodoc:

Constant Summary collapse

MSG =
"Please, provide an adapter for `before_all` " \
"through `TestProf::BeforeAll.adapter = MyAdapter`"

Instance Method Summary collapse

Constructor Details

#initializeAdapterMissing

Returns a new instance of AdapterMissing.



10
11
12
# File 'lib/test_prof/before_all.rb', line 10

def initialize
  super(MSG)
end