Sha256: a7bd717f8b6ccb039aac0d553b33cb1aebf2ab098a274a052c68a69e5bf9a542

Contents?: true

Size: 506 Bytes

Versions: 1

Compression:

Stored size: 506 Bytes

Contents

require 'test/unit'

require 'valdemaximus-conduit'

class TestValdeMaximusConduit < Test::Unit::TestCase
  def test_message_with_phone_numbers
    c = ValdeMaximus::Conduit.new(:domain => 'localhost', :port => 3000, :creds => 'f_Le6kzsCJi5tNP7rFpQ')
    res = c.send_message('hello world 12',
                         ['8016946634, Tom Johnson',
                          '8016946632, Little T Johnson',
                          '8016946633, Big T Johnson'])
    assert_equal('SUCCESS', res[1])
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
valdemaximus-conduit-0.2.1 test/tc_conduit.rb