spec/mpg321_spec.rb in mpg321-0.0.3 vs spec/mpg321_spec.rb in mpg321-0.0.4
- old
+ new
@@ -79,14 +79,9 @@
describe '#play' do
it 'sends a message to play a song' do
expect(stdin).to receive(:puts).with "L /some_path/file_name"
subject.play '/some_path/file_name'
end
-
- it 'can play a list of songs' do
- expect(stdin).to receive(:puts).with "L /some_path/file_name http://example.com/song"
- subject.play ['/some_path/file_name', 'http://example.com/song']
- end
end
describe '#pause' do
it 'sends a message to pause / unpause the song' do
expect(stdin).to receive(:puts).with "P"