mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
9 lines
143 B
Ruby
9 lines
143 B
Ruby
require 'spec_helper'
|
|
|
|
describe MPDClient do
|
|
it 'should respond to GET' do
|
|
get '/'
|
|
expect(last_response.status).to eq(404)
|
|
end
|
|
end
|