1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/spec/javascripts/mocks/api.mock.js
2014-03-25 17:47:09 +00:00

27 lines
611 B
JavaScript

var mockApi = {
getQueue: function () {
return {
query: function () {
return [
{ "id": 116,
"track": 1,
"artist": "Porcupine Tree",
"album": "In Absentia",
"title": "Drown With Me",
"length": 322,
"pos": 0,
"playing": true },
{ "id": 117,
"track": 1,
"artist": "Porcupine Tree",
"album": "In Absentia",
"title": "Blackest Eyes",
"length": 263,
"pos": 1,
"playing": false }
]
}
}
}
}