From bc884ae1846672b2240c24850e0db9a01a308f16 Mon Sep 17 00:00:00 2001 From: Tim Lange Date: Thu, 20 Feb 2020 20:13:14 +0100 Subject: [PATCH] Chore: Added tests for dashboard_controller (#529) --- spec/controllers/dashboard_controller_spec.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 spec/controllers/dashboard_controller_spec.rb diff --git a/spec/controllers/dashboard_controller_spec.rb b/spec/controllers/dashboard_controller_spec.rb new file mode 100644 index 000000000..63f703738 --- /dev/null +++ b/spec/controllers/dashboard_controller_spec.rb @@ -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