Sha256: dccce7b2d08931b08418d909d2b5f67b2203582714236ae2f3e396dd9edb8af6
Contents?: true
Size: 489 Bytes
Versions: 1
Compression:
Stored size: 489 Bytes
Contents
# frozen_string_literal: true require_relative 'spec_helper.rb' describe 'Event spec' do VCR.configure do |c| c.cassette_library_dir = CASSETTES_FOLDER c.hook_into :webmock end before do VCR.insert_cassette CASSETTE_FILE, record: :new_episodes @organization = KktixEvent::Organization.find(TEST_ORG_SLUG) end after do VCR.eject_cassette end it 'should be able to search events throuh api' do KktixEvent::Event.search('go').wont_be_empty end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kktix_api-1.0.0 | spec/event_spec.rb |