Sha256: 10618262035d52faf17f980a48e834b3a78ec345b3ebec7e9e8aaefd00c594a1

Contents?: true

Size: 405 Bytes

Versions: 4

Compression:

Stored size: 405 Bytes

Contents

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

4 entries across 4 versions & 1 rubygems

Version Path
gecko-ruby-0.9.1 test/record/note_test.rb
gecko-ruby-0.9.0 test/record/note_test.rb
gecko-ruby-0.8.0 test/record/note_test.rb
gecko-ruby-0.7.1 test/record/note_test.rb