Chore: Added tests for dashboard_controller (#529)

This commit is contained in:
Tim Lange 2020-02-20 20:13:14 +01:00 committed by GitHub
parent f7c8358549
commit bc884ae184
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,10 @@
require 'rails_helper'
describe '/app', type: :request do
describe 'GET /app' do
it 'renders the dashboard' do
get '/app'
expect(response).to have_http_status(:success)
end
end
end