rosskevin/sms-spec

View on GitHub
lib/sms_unit_test/message.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SmsUnitTest
  class Message
    attr_accessor :number
    attr_accessor :body
    attr_accessor :from

    def initialize(opts = {})
      @number = opts[:number]
      @body = opts[:body]
      @from = opts[:from]
    end
  end
end