class SmsCarrier::NonInferrableCarrierError

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/sms_carrier/test_case.rb, line 5
def initialize(name)
  super "Unable to determine the carrier to test from #{name}. " +
    "You'll need to specify it using tests YourCarrier in your " +
    "test case definition"
end