Sha256: 7bb1113e9308ffde1cbe25a2f1b3e7cc271c20dcd92d5ad2b717659ced7e01ce
Contents?: true
Size: 1.51 KB
Versions: 1
Compression:
Stored size: 1.51 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe '#radio' do before { init_lastfm } it 'should return an instance of Lastfm::Radio' do expect(@lastfm.radio).to be_an_instance_of(Lastfm::MethodCategory::Radio) end describe '#tune' do it 'should tune' do expect(@lastfm).to receive(:request).with('radio.tune', { :station => 'lastfm://globaltags/pop', }, :post, true, true).and_return(@ok_response) @lastfm.radio.tune("lastfm://globaltags/pop") end end describe '#get_playlist' do it 'should return some playlist' do expect(@lastfm).to receive(:request).with("radio.getPlaylist", {}, :get, true, true).and_return(make_response('radio_get_playlist')) playlist = @lastfm.radio.get_playlist tracklist = playlist["trackList"]["track"] expect(tracklist).to be_an_instance_of(Array) expect(tracklist[0]['title']).to eq("All The Things She Said") expect(tracklist[1]['location']).to eq("http://play.last.fm/user/bca46e434c3389217ef1b8d20db1690c.mp3") expect(tracklist[2]['creator']).to eq("Culture Club") expect(tracklist[3]['album']).to eq("The E.N.D.") end it 'should always return playlists with arrays of tracks' do expect(@lastfm).to receive(:request).with("radio.getPlaylist", {}, :get, true, true).and_return(make_response('radio_get_playlist_single_track')) playlist = @lastfm.radio.get_playlist expect(playlist["trackList"]["track"]).to be_an_instance_of(Array) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lastfm-1.27.4 | spec/method_specs/radio_spec.rb |