Sha256: d1faf979b70b609b86a0f5d9a655bdc5c1435f2690d6eb5b976e93acd3c2b1bb

Contents?: true

Size: 423 Bytes

Versions: 6

Compression:

Stored size: 423 Bytes

Contents

require 'test_helper'

class Gecko::WebhookTest < Minitest::Test
  include VCRHelper
  include SharedRecordExamples

  let(:plural_name)   { "webhooks" }
  let(:record_class)  { Gecko::Record::Webhook }

  def setup
    @json   = load_vcr_hash("webhooks", "webhooks").first
    @record = record_class.new(client, @json)
  end

  def test_initializes_record
    assert_instance_of(Gecko::Record::Webhook, @record)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gecko-ruby-0.9.1 test/record/webhook_test.rb
gecko-ruby-0.9.0 test/record/webhook_test.rb
gecko-ruby-0.8.0 test/record/webhook_test.rb
gecko-ruby-0.7.1 test/record/webhook_test.rb
gecko-ruby-0.7.0 test/record/webhook_test.rb
gecko-ruby-0.6.0 test/record/webhook_test.rb