Dalphi/dalphi

View on GitHub
spec/requests/api/redirect_spec.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'rails_helper'

RSpec.describe "Redirection", type: :request do
  it 'redirects to the latest API version' do
    get '/api'
    expect(response).to redirect_to('/api/v1')
  end
end