Sha256: 03fbfb1e59847133356fc988b50506dfcab63b1c9f9f286b7f309c5c7274e94b
Contents?: true
Size: 349 Bytes
Versions: 6
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true require "test_helper" module Events class GuestObjectTest < Minitest::Test def setup json = JSON.parse(fixture_file("objects/events/guest")).merge(client: client) @guest = Calendlyr::Events::Guest.new(json) end def test_email assert "user@example.com", @guest.email end end end
Version data entries
6 entries across 6 versions & 1 rubygems