spec/integration/bulkexports/v1/export/day_spec.rb in twilio-ruby-5.38.0 vs spec/integration/bulkexports/v1/export/day_spec.rb in twilio-ruby-5.39.0
- old
+ new
@@ -15,11 +15,10 @@
expect {
@client.bulkexports.v1.exports('resource_type') \
.days('day').fetch()
}.to raise_exception(Twilio::REST::TwilioError)
- values = {}
expect(
@holodeck.has_request?(Holodeck::Request.new(
method: 'get',
url: 'https://bulkexports.twilio.com/v1/Exports/resource_type/Days/day',
))).to eq(true)
@@ -47,10 +46,9 @@
expect {
@client.bulkexports.v1.exports('resource_type') \
.days.list()
}.to raise_exception(Twilio::REST::TwilioError)
- values = {}
expect(
@holodeck.has_request?(Holodeck::Request.new(
method: 'get',
url: 'https://bulkexports.twilio.com/v1/Exports/resource_type/Days',
))).to eq(true)
\ No newline at end of file