Chore: Added tests for dashboard_controller (#529)
This commit is contained in:
parent
f7c8358549
commit
bc884ae184
1 changed files with 10 additions and 0 deletions
10
spec/controllers/dashboard_controller_spec.rb
Normal file
10
spec/controllers/dashboard_controller_spec.rb
Normal 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
|
Loading…
Reference in a new issue