Sha256: ca83953458e95952d469912a3194ce87b80875a96643e2c7db04e526700757dd
Contents?: true
Size: 667 Bytes
Versions: 25
Compression:
Stored size: 667 Bytes
Contents
require 'core/spec_helper' describe ZendeskAPI::PushNotificationDevice do describe ".destroy_many" do describe "Existing push notification devices" do it "destroys the given push notification devices" do VCR.use_cassette("push_notification_devices_destroy_many") do ZendeskAPI::PushNotificationDevice.destroy_many(client, ["foo", "bar"]) end end end describe "Non-existing devices" do it "silently ignores the devices" do VCR.use_cassette("push_notification_devices_destroy_many") do ZendeskAPI::PushNotificationDevice.destroy_many(client, ["baz"]) end end end end end
Version data entries
25 entries across 25 versions & 1 rubygems