forked from twilio/twilio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove holdovers from legacy library (twilio#346)
* Remove holdovers from legacy library * Remove unused/outdated imports * Update tests for Configuration removal * Remove more things * Remove more things
- Loading branch information
Showing
9 changed files
with
4 additions
and
239 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +0,0 @@ | ||
describe Twilio do | ||
after(:each) do | ||
Twilio.instance_variable_set('@configuration', nil) | ||
end | ||
|
||
it 'should set the account sid and auth token with a config block' do | ||
Twilio.configure do |config| | ||
config.account_sid = 'someSid' | ||
config.auth_token = 'someToken' | ||
end | ||
|
||
expect(Twilio.account_sid).to eq('someSid') | ||
expect(Twilio.auth_token).to eq('someToken') | ||
end | ||
end | ||
This file was deleted.
Oops, something went wrong.