Sha256: f20dbfcf781ec983f89486aa27b1a629f00f76468b1ae60330b48e2eb79d288d
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
require 'spec_helper' include Source::State describe Stream do let(:source) do Source.new.tap { |source| source.stream = Stream.new(WAV_PATH) } end it_behaves_like 'an audio object with format' specify 'open is equivalent to new' do klass = described_class class << klass; alias unit_test_open new; end klass.method(:open).should eq klass.method(:unit_test_open) class << klass; remove_method :unit_test_open; end end context 'that are closed' do subject do Stream.new(WAV_PATH).tap { |stream| stream.close } end its(:bit_depth) { should eq 16 } its(:channel_count) { should eq 1 } its(:frequency) { should eq 0 } end example 'rewinding prevents source from stopping' do source.play 6.times do sleep(0.1) source.stream.rewind end source.state.should be PLAYING end it 'can be closed even when used by sources' do expect do source.play source.stream.close sleep 0.5 end.to_not raise_error end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
seal-0.1.3 | spec/seal/stream_spec.rb |
seal-0.1.2 | spec/seal/stream_spec.rb |
seal-0.1.1 | spec/seal/stream_spec.rb |