1
0
mirror of https://github.com/danbee/mpd-client synced 2025-03-04 08:39:09 +00:00
mpd-client/spec/mpd_client_spec.rb
2013-09-02 14:40:39 +01:00

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