Sha256: 7779dfcf4bc968f64cd789f0b44311870b5ed9b8126e5e74fee2792b1ce4da9f

Contents?: true

Size: 298 Bytes

Versions: 1

Compression:

Stored size: 298 Bytes

Contents

require 'spec_helper'

ReplayApi.configure do |config|
  config.replay_key = 'bogus-key'
  config.ssl = false
end

describe 'Posting Events' do
  let(:client) { ReplayApi::Client.new }

  it 'can post an event' do
    client.event do |event|
      event.event_name = 'Test Event'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
replay_api-0.0.3 spec/feature/client_spec.rb