Sha256: 53ba1a7e50a472cbec079205edda43904d498316b743731ae338fb34f7b3530e
Contents?: true
Size: 666 Bytes
Versions: 6
Compression:
Stored size: 666 Bytes
Contents
# frozen_string_literal: true require "test_helper" module Events class InviteeNoShowObjectTest < Minitest::Test def setup json = JSON.parse(fixture_file("objects/events/invitee_no_show")).merge(client: client) @invitee_no_show = Calendlyr::Events::InviteeNoShow.new(json) end def test_created_at assert "2019-01-02T03:04:05.678123Z", @invitee_no_show.created_at end def test_delete response = {body: fixture_file("events/delete_invitee_no_show"), status: 204} stub(method: :delete, path: "invitee_no_shows/#{@invitee_no_show.uuid}", response: response) assert @invitee_no_show.delete end end end
Version data entries
6 entries across 6 versions & 1 rubygems