class Spork::TestFramework::NoFrameworkMatched

Public Instance Methods

message() click to toggle source
# File lib/spork/test_framework.rb, line 31
def message
  "Couldn\'t find a supported test framework that begins with '#{@beginning_with}'"
end

Public Class Methods

new(beginning_with) click to toggle source
# File lib/spork/test_framework.rb, line 27
def initialize(beginning_with)
  @beginning_with = beginning_with
end