Sha256: 2869d293bd0445399415e57a7d1c43eb947cec87b9fa697537a4e33a70c8ae84

Contents?: true

Size: 436 Bytes

Versions: 2

Compression:

Stored size: 436 Bytes

Contents

require File.join( File.dirname(__FILE__) , '..', 'spec_helper' )

describe OSC::OSCInt32 do
  it "should not blow up" do
    OSC::OSCInt32.new 1
  end
  
end

describe OSC::OSCFloat32 do
  it "should not blow up" do
    OSC::OSCFloat32.new 1.0
  end
end

describe OSC::OSCString do
  it "should not blow up" do
    OSC::OSCString.new "1"
  end
end

describe OSC::OSCBlob do
  it "should not blow up" do
    OSC::OSCBlob.new 1
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aberant-osc-ruby-0.1.5 spec/unit/osc_types_spec.rb
aberant-osc-ruby-0.1.6 spec/unit/osc_types_spec.rb