Implement ping/pong endpoint in API
This commit is contained in:
13
spec/integration/api/application_spec.rb
Normal file
13
spec/integration/api/application_spec.rb
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
Reference in New Issue
Block a user