Sha256: 955ab599c0a14d55851d0591523c8d9c315e3e9c897273f7b667080218c7694e

Contents?: true

Size: 436 Bytes

Versions: 7

Compression:

Stored size: 436 Bytes

Contents

# frozen_string_literal: true

require 'test_helper'

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

  let(:plural_name)   { 'notes' }
  let(:record_class)  { Gecko::Record::Note }

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

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gecko-ruby-0.12.3 test/record/note_test.rb
gecko-ruby-0.12.2 test/record/note_test.rb
gecko-ruby-0.12.1 test/record/note_test.rb
gecko-ruby-0.12.0 test/record/note_test.rb
gecko-ruby-0.11.1 test/record/note_test.rb
gecko-ruby-0.11.0 test/record/note_test.rb
gecko-ruby-0.10.0 test/record/note_test.rb