scube-server/spec/integration/api/application_spec.rb
2015-05-01 17:25:18 +00:00

14 lines
256 B
Ruby

describe 'API application' do
include AcceptanceHelpers
before { api_sign_in }
describe 'ping endpoint' do
before { get api_ping_path, format: :json }
it 'responds with a pong' do
expect(json).to eq({ pong: 'ok' })
end
end
end