Exception: Spork::TestFramework::NoFrameworkMatched

Inherits:
FactoryException show all
Defined in:
lib/spork/test_framework.rb

Instance Method Summary collapse

Constructor Details

#initialize(beginning_with) ⇒ NoFrameworkMatched

Returns a new instance of NoFrameworkMatched.



27
28
29
# File 'lib/spork/test_framework.rb', line 27

def initialize(beginning_with)
  @beginning_with = beginning_with
end

Instance Method Details

#messageObject



31
32
33
# File 'lib/spork/test_framework.rb', line 31

def message
  "Couldn\'t find a supported test framework that begins with '#{@beginning_with}'"
end