Sha256: e69e3d52d99283b4327feacd023d6585b3185fefd9c7f4b2dea9a4e988432693
Contents?: true
Size: 421 Bytes
Versions: 7
Compression:
Stored size: 421 Bytes
Contents
require File.dirname(__FILE__) + '/../test_helper' class ConnectionTest < Test::Unit::TestCase #:nodoc: all context "A Twilio connection" do setup do @connection = Twilio::Connection.new('mysid', 'mytoken') end context "when initializing" do should "have correct url" do assert_equal "#{Twilio::Connection::TWILIO_URL}/mysid", @connection.class.base_uri end end end end
Version data entries
7 entries across 7 versions & 2 rubygems