We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e6ade commit ceb2582Copy full SHA for ceb2582
spec/rest/client_spec.rb
@@ -41,6 +41,16 @@
41
expect(@client.logger).to eq('myLogger')
42
end
43
44
+ it 'uses the region edge mapping' do
45
+ @client = Twilio::REST::Client.new
46
+ expect(@client.account_sid).to eq('someSid')
47
+ expect(@client.auth_token).to eq('someToken')
48
+ expect(@client.http_client).to eq('someClient')
49
+ expect(@client.region).to eq('ie1')
50
+ expect(@client.edge).to eq('dublin')
51
+ expect(@client.logger).to eq('someLogger')
52
+ end
53
+
54
class MyVersion < Twilio::REST::Version
55
def initialize(domain)
56
super
0 commit comments