scube-server/spec/integration/api/playlists_spec.rb
2015-05-03 22:58:05 +00:00

37 lines
769 B
Ruby

describe 'API playlists' do
before { api_sign_in }
it 'lists playlists' do
playlist = create :playlist
get api_playlists_path, format: :json
expect(json).to eq(
playlists: [{
id: playlist.id,
name: playlist.name
}]
)
end
it 'shows a playlist' do
playlist = create :playlist
get api_playlist_path playlist, format: :json
expect(json).to eq(
playlist: {
id: playlist.id,
name: playlist.name
}
)
end
it 'creates playlist' do
playlist = attributes_for :playlist
post api_playlists_path, format: :json, playlist: playlist
expect(json).to match(
playlist: {
id: an_instance_of(Fixnum),
name: playlist[:name]
}
)
end
end