Sha256: 21823089541907ce2004172c7df8c8ce7e224addd91567e3c8b011f17baac448

Contents?: true

Size: 330 Bytes

Versions: 1

Compression:

Stored size: 330 Bytes

Contents

require 'spec_helper'

describe Synthdef do
  let(:synthdef_binary) { IO.read(File.expand_path("../data/recorder.scsyndef", __FILE__)) }

  it 'reads a basic synthdef' do
    parsed_synthdef = Synthdef.read(synthdef_binary).snapshot

    expect(parsed_synthdef).to be_a(Hash)
    expect(parsed_synthdef).not_to be_empty
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
synthdef-0.0.1 spec/synthdef_spec.rb